/* =========================================================
   HOME - FILIPE ASSIS | DEV
   Developer Premium
========================================================= */

:root {
  --header-height: 112px;

  --home-bg: #080808;
  --home-surface: #0b0b0b;
  --home-surface-2: #101010;
  --home-surface-3: #151515;

  --home-white: #ffffff;
  --home-text: #f2f2f2;
  --home-muted: #909090;
  --home-muted-dark: #565656;

  --home-border: rgba(255, 255, 255, 0.075);
  --home-border-strong: rgba(255, 255, 255, 0.13);

  --home-red: #d32632;

  --mouse-x: 72%;
  --mouse-y: 45%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  width: 100%;
  height: calc(100dvh - var(--header-height));
  min-height: 0;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--home-bg);

  isolation: isolate;
}


/* =========================================================
   GRID DE FUNDO
========================================================= */

.hero__grid {
  position: absolute;
  inset: 0;

  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.017) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.017) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      transparent 96%
    );
}

/* =========================================================
   CONTAINER
========================================================= */

.hero__container {
  position: relative;
  z-index: 2;

  height: 100%;
  min-height: 0;

  display: grid;

  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(540px, 1.22fr);

  align-items: center;

  gap: clamp(48px, 5vw, 78px);

  padding-top: 18px;
  padding-bottom: 18px;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.hero__content {
  position: relative;

  max-width: 545px;
}


/* =========================================================
   IDENTIFICAÇÃO
========================================================= */

.hero__eyebrow {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 24px;

  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 11px;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.105em;
  text-transform: uppercase;

  color: #cfcfcf;
}

.hero__status-dot {
  position: relative;

  width: 7px;
  height: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--home-red);

  box-shadow:
    0 0 0 4px rgba(211, 38, 50, 0.08),
    0 0 16px rgba(211, 38, 50, 0.24);
}


/* =========================================================
   TÍTULO
========================================================= */

.hero__title {
  max-width: 540px;

  margin: 0 0 22px;

  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: clamp(41px, 3.55vw, 57px);
  font-weight: 500;

  line-height: 1.04;

  letter-spacing: -0.052em;

  color: var(--home-white);

  text-wrap: balance;
}

.hero__title span {
  display: block;

  margin-top: 7px;

  color: var(--home-red);
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.hero__description {
  max-width: 460px;

  margin-bottom: 28px;

  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.65;

  color: #969696;
}


/* =========================================================
   AÇÕES
========================================================= */

.hero__actions {
  display: flex;
  align-items: center;

  gap: 22px;
}


/* botão principal */

.hero__button {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 21px;

  border-radius: 7px;

  font-family:
    "Inter",
    sans-serif;

  font-size: 14px;
  font-weight: 500;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.hero__button--primary {
  border: 1px solid #ffffff;

  background: #ffffff;

  color: #080808;
}

.hero__button--primary:hover {
  background: #e8e8e8;
  border-color: #e8e8e8;

  transform: translateY(-2px);
}

.hero__button span {
  font-size: 16px;

  transition: transform 0.25s ease;
}

.hero__button:hover span {
  transform: translate(2px, -2px);
}


/* link secundário */

.hero__link {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 10px 0;

  font-family:
    "Inter",
    sans-serif;

  font-size: 13px;
  font-weight: 500;

  color: #9c9c9c;

  transition: color 0.25s ease;
}

.hero__link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 6px;

  width: 0;
  height: 1px;

  background: #ffffff;

  transition: width 0.25s ease;
}

.hero__link:hover {
  color: #ffffff;
}

.hero__link:hover::after {
  width: calc(100% - 24px);
}

.hero__link span {
  font-size: 16px;

  transition: transform 0.25s ease;
}

.hero__link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   WORKSPACE
========================================================= */

.hero__workspace {
  position: relative;

  width: 100%;
  height: min(520px, calc(100% - 42px));
  min-height: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  perspective: 1500px;
}


/* iluminação atrás */

.workspace__glow {
  position: absolute;

  width: 82%;
  height: 74%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.055),
      transparent 67%
    );

  filter: blur(45px);

  pointer-events: none;
}


/* =========================================================
   JANELA
========================================================= */

.workspace {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 690px;

  height: 410px;

  overflow: hidden;

  border: 1px solid var(--home-border-strong);
  border-radius: 12px;

  background: #090909;

  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.012),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);

  transform:
    perspective(1500px)
    rotateY(-1.5deg)
    rotateX(0.7deg);

  transform-origin: center;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.hero__workspace:hover .workspace {
  border-color: rgba(255, 255, 255, 0.17);

  transform:
    perspective(1500px)
    rotateY(0deg)
    rotateX(0deg)
    translateY(-3px);

  box-shadow:
    0 52px 110px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}


/* =========================================================
   TOPBAR
========================================================= */

.workspace__topbar {
  height: 43px;

  display: flex;
  align-items: center;

  padding: 0 13px;

  background: #101010;

  border-bottom: 1px solid var(--home-border);
}


/* controles */

.workspace__window-controls {
  display: flex;
  align-items: center;

  gap: 5px;

  margin-right: 16px;
}

.workspace__window-controls span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #3b3b3b;
}


/* abas */

.workspace__tabs {
  height: 100%;

  flex: 1;

  display: flex;
  align-items: stretch;
}

.workspace__tab {
  min-width: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 6px;

  padding-inline: 12px;

  border-left: 1px solid transparent;
  border-right: 1px solid transparent;

  font-family:
    "Inter",
    sans-serif;

  font-size: 9px;

  color: #606060;
}

.workspace__tab--active {
  position: relative;

  background: #090909;

  border-left-color: var(--home-border);
  border-right-color: var(--home-border);

  color: #b7b7b7;
}

.workspace__tab--active::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background: var(--home-red);
}

.workspace__tab-icon {
  color: #858585;
}


/* ações topo */

.workspace__top-actions {
  display: flex;
  align-items: center;

  gap: 8px;
}

.workspace__top-actions span {
  width: 11px;
  height: 11px;

  border: 1px solid #373737;
  border-radius: 2px;
}


/* =========================================================
   CORPO
========================================================= */

.workspace__body {
  height: 275px;

  display: grid;

  grid-template-columns:
    115px
    minmax(225px, 1fr)
    minmax(190px, 0.82fr);

  background: #080808;
}


/* =========================================================
   EXPLORER
========================================================= */

.code-editor {
  overflow: hidden;

  border-right: 1px solid var(--home-border);

  background: #0c0c0c;

  font-family:
    "Inter",
    sans-serif;
}

.code-editor__header {
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-inline: 11px;

  font-size: 7px;
  font-weight: 600;

  letter-spacing: 0.08em;

  color: #5b5b5b;
}

.code-editor__file {
  min-height: 24px;

  display: flex;
  align-items: center;

  gap: 6px;

  padding-inline: 9px;

  font-size: 8px;

  color: #717171;
}

.code-editor__file--child {
  padding-left: 21px;
}

.code-editor__arrow {
  font-size: 10px;

  color: #505050;
}

.code-editor__html-icon {
  color: #bd704e;
}

.code-editor__css-icon {
  color: #577fa8;
}

.code-editor__js-icon {
  font-size: 6px;
  font-weight: 700;

  color: #bea84f;
}


/* =========================================================
   PAINEL DE CÓDIGO
========================================================= */

.code-panel {
  position: relative;

  overflow: hidden;

  padding-top: 21px;

  border-right: 1px solid var(--home-border);

  background:
    linear-gradient(
      90deg,
      #0a0a0a,
      #080808
    );

  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
}


/* linha vermelha decorativa sutil */

.code-panel::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 42%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(211, 38, 50, 0.7),
      transparent
    );

  opacity: 0.6;
}

.code-line {
  min-height: 23px;

  display: flex;
  align-items: center;

  white-space: nowrap;

  font-size: 8px;

  transition:
    background 0.25s ease,
    opacity 0.25s ease;
}

.code-line code {
  font-family: inherit;
}

.code-line:hover {
  background: rgba(255, 255, 255, 0.025);
}

.code-number {
  width: 32px;

  flex-shrink: 0;

  padding-right: 9px;

  text-align: right;

  color: #353535;

  user-select: none;
}

.code-purple {
  color: #aa78c1;
}

.code-blue {
  color: #6b9bc0;
}

.code-orange {
  color: #b98968;
}

.code-white {
  color: #bcbcbc;
}

.code-red {
  color: #cb555f;
}

.code-gray {
  color: #526953;
}

.code-line--empty {
  min-height: 18px;
}


/* =========================================================
   LIVE PREVIEW
========================================================= */

.preview-panel {
  min-width: 0;

  padding: 10px;

  background: #0b0b0b;
}

.preview-panel__header {
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-family:
    "Inter",
    sans-serif;

  font-size: 7px;

  color: #666666;
}

.preview-panel__header > div {
  display: flex;
  align-items: center;

  gap: 6px;
}

.preview-panel__status {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #65986d;

  box-shadow:
    0 0 7px rgba(101, 152, 109, 0.42);

  animation: previewStatus 2.3s ease-in-out infinite;
}

@keyframes previewStatus {
  0%,
  100% {
    opacity: 0.65;
  }

  50% {
    opacity: 1;
  }
}


/* =========================================================
   MINI BROWSER
========================================================= */

.preview-browser {
  overflow: hidden;

  height: 221px;

  border: 1px solid var(--home-border);
  border-radius: 7px;

  background: #080808;
}

.preview-browser__top {
  height: 27px;

  display: flex;
  align-items: center;

  gap: 8px;

  padding: 0 8px;

  border-bottom: 1px solid var(--home-border);

  background: #101010;
}

.preview-browser__dots {
  display: flex;

  gap: 3px;
}

.preview-browser__dots span {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #3a3a3a;
}

.preview-browser__url {
  flex: 1;

  padding: 4px 7px;

  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 3px;

  background: #0a0a0a;

  font-family:
    "Inter",
    sans-serif;

  font-size: 5px;

  color: #444444;
}


/* conteúdo */

.preview-browser__content {
  position: relative;

  height: calc(100% - 27px);

  overflow: hidden;

  padding: 26px 17px;

  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(211, 38, 50, 0.13),
      transparent 40%
    ),
    #080808;
}

.preview-browser__badge {
  width: max-content;

  margin-bottom: 14px;

  padding: 4px 6px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 3px;

  font-family:
    "Inter",
    sans-serif;

  font-size: 5px;
  font-weight: 500;

  letter-spacing: 0.08em;

  color: #747474;
}

.preview-browser__title {
  margin-bottom: 17px;

  font-family:
    "Inter",
    sans-serif;

  font-size: 16px;
  font-weight: 500;

  line-height: 1.06;

  letter-spacing: -0.04em;

  color: #eeeeee;
}

.preview-browser__title span {
  color: var(--home-red);
}

.preview-browser__text {
  width: 88%;
  height: 4px;

  margin-bottom: 5px;

  border-radius: 999px;

  background: #252525;
}

.preview-browser__text--short {
  width: 62%;
}

.preview-browser__button {
  width: max-content;

  margin-top: 16px;

  padding: 6px 10px;

  border-radius: 3px;

  background: #ffffff;

  font-family:
    "Inter",
    sans-serif;

  font-size: 6px;
  font-weight: 600;

  color: #090909;
}


/* =========================================================
   TERMINAL
========================================================= */

.workspace__terminal {
  height: 92px;

  border-top: 1px solid var(--home-border);

  background: #070707;

  font-family:
    "SFMono-Regular",
    Consolas,
    monospace;
}

.terminal__top {
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-inline: 13px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.04);

  font-family:
    "Inter",
    sans-serif;

  font-size: 6px;
  font-weight: 600;

  letter-spacing: 0.08em;

  color: #535353;
}

.terminal__content {
  padding: 10px 14px;
}

.terminal__line {
  display: flex;
  align-items: center;

  gap: 6px;

  margin-bottom: 7px;

  font-size: 7px;

  color: #737373;
}

.terminal__prompt {
  color: #858585;
}

.terminal__path {
  color: #9d7277;
}

.terminal__command {
  color: #b4b4b4;
}

.terminal__line--success {
  color: #678a6c;
}

.terminal__time {
  margin-left: auto;

  color: #454545;
}















/* =========================================================
   CARD FLUTUANTE
========================================================= */

.hero-card {
  position: absolute;
  z-index: 5;

  min-width: 145px;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 11px 13px;

  border: 1px solid var(--home-border-strong);
  border-radius: 9px;

  background: rgba(13, 13, 13, 0.88);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.025);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  font-family:
    "Inter",
    sans-serif;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.hero-card--performance {
  top: 22px;
  right: -16px;
}

.hero-card:hover {
  transform: translateY(-3px);

  border-color: rgba(255, 255, 255, 0.2);
}

.hero-card__icon {
  width: 28px;
  height: 28px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;

  background: #151515;

  font-size: 12px;

  color: #d0d0d0;
}

.hero-card__label {
  display: block;

  margin-bottom: 3px;

  font-size: 7px;

  color: #626262;
}

.hero-card strong {
  display: block;

  font-size: 10px;
  font-weight: 500;

  color: #d8d8d8;
}


/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1200px) {
  .hero__container {
    grid-template-columns:
      minmax(0, 0.8fr)
      minmax(500px, 1.2fr);

    gap: 42px;
  }

  .hero__title {
    font-size: clamp(40px, 4vw, 53px);
  }

  .workspace {
    max-width: 640px;
  }

  .workspace__body {
    grid-template-columns:
      105px
      minmax(205px, 1fr)
      minmax(175px, 0.8fr);
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 940px) {
  :root {
    --header-height: 90px;
  }

  .hero {
    height: auto;
    min-height: calc(100dvh - var(--header-height));
  }

  .hero__container {
    height: auto;

    grid-template-columns: 1fr;

    gap: 55px;

    padding-top: 60px;
    padding-bottom: 75px;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero__title {
    max-width: 650px;

    font-size: clamp(44px, 7.5vw, 65px);
  }

  .hero__description {
    max-width: 520px;
  }

  .hero__workspace {
    width: min(100%, 720px);
    height: 500px;

    margin-inline: auto;
  }

  .workspace {
    max-width: 650px;
  }

  .hero-card--performance {
    right: 0;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .hero__grid {
    background-size: 48px 48px;
  }

  .hero__container {
    gap: 44px;

    padding-top: 48px;
    padding-bottom: 60px;
  }

  .hero__eyebrow {
    margin-bottom: 20px;

    font-size: 9px;
  }

  .hero__title {
    margin-bottom: 20px;

    font-size: clamp(38px, 11vw, 51px);
  }

  .hero__description {
    margin-bottom: 26px;

    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;

    gap: 11px;
  }

  .hero__button {
    width: 100%;
  }

  .hero__link {
    margin-left: 2px;
  }

  .hero__workspace {
    height: 365px;
  }

  .workspace {
    height: 330px;

    border-radius: 10px;

    transform: none;
  }

  .workspace__topbar {
    height: 37px;
  }

  .workspace__tab {
    min-width: 72px;

    padding-inline: 7px;

    font-size: 7px;
  }

  .workspace__tab:nth-child(3) {
    display: none;
  }

  .workspace__body {
    height: 227px;

    grid-template-columns:
      0
      1.12fr
      0.88fr;
  }

  .code-editor {
    display: none;
  }

  .code-panel {
    padding-top: 15px;
  }

  .code-line {
    min-height: 19px;

    font-size: 6px;
  }

  .code-number {
    width: 25px;
  }

  .preview-panel {
    padding: 8px;
  }

  .preview-browser {
    height: 181px;
  }

  .preview-browser__content {
    padding: 21px 13px;
  }

  .preview-browser__title {
    font-size: 13px;
  }

  .workspace__terminal {
    height: 66px;
  }

  .terminal__top {
    height: 22px;
  }

  .terminal__content {
    padding: 7px 10px;
  }

  .terminal__line {
    margin-bottom: 4px;

    font-size: 6px;
  }

  .hero-card {
    min-width: 125px;

    padding: 9px 10px;
  }

  .hero-card--performance {
    top: -10px;
    right: 3px;
  }

  .hero-card__icon {
    width: 24px;
    height: 24px;
  }
}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 480px) {
  :root {
    --header-height: 84px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__workspace {
    height: 330px;
  }

  .workspace {
    height: 300px;
  }

  .workspace__body {
    height: 201px;
  }

  .preview-browser {
    height: 155px;
  }

  .workspace__terminal {
    height: 62px;
  }

  .hero-card--performance {
    right: -3px;
  }
}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .workspace,
  .hero-card,
  .hero__button,
  .hero__link span,
  .preview-panel__status {
    animation: none;
    transition: none;
  }
}

/* =========================================================
   HERO - INTERAÇÕES PREMIUM
========================================================= */


/* =========================================================
   TILT DINÂMICO
========================================================= */

.hero__workspace {
  --tilt-x: 0deg;
  --tilt-y: -1deg;
}

.workspace {
  transform:
    perspective(1500px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));

  transition:
    transform 0.18s ease-out,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero__workspace:hover .workspace {
  border-color: rgba(255, 255, 255, 0.17);

  box-shadow:
    0 52px 110px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}


/* =========================================================
   LINHAS DE CÓDIGO
========================================================= */

.code-line[data-code-line] {
  opacity: 0.15;

  transform: translateX(-6px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.3s ease;
}

.code-line[data-code-line].is-visible {
  opacity: 1;

  transform: translateX(0);
}

.code-line[data-code-line].is-active {
  background:
    linear-gradient(
      90deg,
      rgba(211, 38, 50, 0.08),
      transparent 72%
    );

  box-shadow:
    inset 2px 0 0
    rgba(211, 38, 50, 0.65);
}


/* =========================================================
   TERMINAL
========================================================= */

.terminal__line {
  opacity: 0;

  transform: translateY(4px);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.terminal__line.is-visible {
  opacity: 1;

  transform: translateY(0);
}

.terminal__command::after {
  content: "";

  display: inline-block;

  width: 5px;
  height: 9px;

  margin-left: 3px;

  vertical-align: -1px;

  background: #777777;

  animation:
    terminalCursor 0.85s steps(1) infinite;
}

@keyframes terminalCursor {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}


/* =========================================================
   PREVIEW
========================================================= */

.preview-browser {
  transition:
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    transform 0.5s ease;
}

.preview-browser__content {
  opacity: 0.4;

  filter: saturate(0.45);

  transform: scale(0.985);

  transform-origin: center;

  transition:
    opacity 0.6s ease,
    filter 0.6s ease,
    transform 0.6s ease;
}


/* BUILD */

.preview-panel.is-building
.preview-panel__status {
  background: var(--home-red);

  box-shadow:
    0 0 0 3px rgba(211, 38, 50, 0.08),
    0 0 12px rgba(211, 38, 50, 0.35);
}


/* PRONTO */

.preview-panel.is-ready
.preview-panel__status {
  background: #65986d;

  box-shadow:
    0 0 10px rgba(101, 152, 109, 0.45);
}

.preview-panel.is-ready
.preview-browser__content {
  opacity: 1;

  filter: saturate(1);

  transform: scale(1);
}

.preview-panel.is-ready
.preview-browser {
  border-color:
    rgba(255, 255, 255, 0.13);

  box-shadow:
    0 0 35px
    rgba(255, 255, 255, 0.025);
}


/* =========================================================
   CARD PERFORMANCE
========================================================= */

.hero-card--performance {
  opacity: 0;

  transform:
    translateY(8px)
    scale(0.97);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color 0.3s ease;
}

.hero-card--performance.is-visible {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.hero-card--performance.is-visible:hover {
  transform:
    translateY(-3px)
    scale(1);
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .code-line[data-code-line],
  .terminal__line,
  .preview-browser__content,
  .hero-card--performance {
    opacity: 1;

    transform: none;

    filter: none;

    transition: none;
  }

  .terminal__command::after {
    display: none;
  }
}















/* =============================
   FAIXA DESIGN RESPONSIVO
================================ */
.responsive-band{
  position: relative;
  width: min(1400px, calc(100% - 80px));
  margin: 52px auto 0;
  padding: 30px 36px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 28px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.16),
    0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.responsive-band::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  pointer-events: none;
  z-index: 0;
}

.responsive-band::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 28%);
  pointer-events: none;
  z-index: 0;
}

.responsive-band__container{
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;

  align-items: center;
  gap: 20px;

  min-height: 250px;
}

.responsive-band__content{
  max-width: 540px;
}

.responsive-band__eyebrow{
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #676767;
}

.responsive-band__title{
  margin: 0;
  line-height: 0.9;
}

.responsive-band__title-line{
  display: block;
}

.responsive-band__title-line--light{
  font-size: clamp(2.6rem, 4.4vw, 4.9rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  color: #090909;
}

.responsive-band__title-line--stroke{
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
  color: transparent;
  -webkit-text-stroke: 1.8px #101010;
  text-transform: uppercase;
}

.responsive-band__visual{
  --spot-x: 68%;
  --spot-y: 50%;

  position: relative;

  min-height: 280px;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.responsive-band__visual::before{
  content: "";
  position: absolute;
  inset: -10% -6%;
  background:
    radial-gradient(
      circle at var(--spot-x) var(--spot-y),
      rgba(239, 68, 68, 0.16) 0%,
      rgba(239, 68, 68, 0.08) 18%,
      rgba(239, 68, 68, 0) 42%
    );
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.responsive-band__glow{
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(34px);
}

.responsive-band__glow--one{
  width: 280px;
  height: 280px;
  right: 50px;
  top: -40px;
  background: rgba(255, 60, 60, 0.10);
}

.responsive-band__glow--two{
  width: 240px;
  height: 240px;
  right: 180px;
  bottom: -70px;
  background: rgba(0, 0, 0, 0.08);
}

.responsive-device-shell{
  position: absolute;
  will-change: transform;
  transition: transform 0.28s ease;
  z-index: 1;
}

.responsive-device-shell--phone{
  right: 455px;
  top: 50%;

  width: auto;
  height: 185px;

  margin-top: -92.5px;

  z-index: 3;
}

.responsive-device-shell--laptop{
  right: 145px;
  top: 50%;

  width: auto;
  height: 275px;

  margin-top: -137.5px;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  z-index: 2;
}

.responsive-device-shell--tablet{
  right: 8px;
  top: 50%;

  width: auto;
  height: 215px;

  margin-top: -107.5px;

  z-index: 1;
}

.responsive-device{
  display: block;

  width: auto;
  height: 100%;

  max-width: none;

  object-fit: contain;

  user-select: none;
  pointer-events: none;
}

.responsive-device--laptop{
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
  animation: responsiveLaptopFloat 6.2s ease-in-out infinite;
}

.responsive-device--phone{
  transform: rotate(-14deg);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
  animation: responsivePhoneFloat 5.4s ease-in-out infinite;
}

.responsive-device--tablet{
  transform: rotate(14deg);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.18));
  animation: responsiveTabletFloat 5.8s ease-in-out infinite;
}

@keyframes responsiveLaptopFloat{
  0%,
  100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-6px);
  }
}

@keyframes responsivePhoneFloat{
  0%,
  100%{
    transform: rotate(-14deg) translateY(0);
  }
  50%{
    transform: rotate(-14deg) translateY(-10px);
  }
}

@keyframes responsiveTabletFloat{
  0%,
  100%{
    transform: rotate(14deg) translateY(0);
  }
  50%{
    transform: rotate(14deg) translateY(-8px);
  }
}

/* =========================================================
   RESPONSIVO - TABLET
========================================================= */

@media (max-width: 1100px) {

  .responsive-band {
    width: calc(100% - 48px);
    margin: 42px auto 0;
    padding: 32px 28px 34px;
  }

  .responsive-band__container {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
  }

  .responsive-band__content {
    width: 100%;
    max-width: 100%;
  }

  .responsive-band__visual {
    position: relative;

    width: 100%;
    min-height: 0;

    display: grid;

    grid-template-columns:
      110px
      minmax(320px, 1fr)
      130px;

    grid-template-areas:
      "phone laptop tablet";

    align-items: end;
    justify-content: center;

    gap: 26px;

    margin-top: 12px;
    padding-top: 18px;

    overflow: visible;
  }

  /* Remove completamente o posicionamento absoluto do desktop */

  .responsive-device-shell {
    position: relative;

    top: auto;
    right: auto;
    bottom: auto;
    left: auto;

    width: 100%;
    height: auto;

    margin: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .responsive-device-shell--phone {
    grid-area: phone;

    width: 100%;
    height: auto;

    justify-self: center;

    z-index: 2;
  }

  .responsive-device-shell--laptop {
    grid-area: laptop;

    width: 100%;
    max-width: 480px;
    height: auto;

    justify-self: center;

    z-index: 2;
  }

  .responsive-device-shell--tablet {
    grid-area: tablet;

    width: 100%;
    height: auto;

    justify-self: center;

    z-index: 2;
  }

  /* As imagens passam a obedecer a largura do shell */

  .responsive-device {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .responsive-device--phone {
    transform: rotate(-8deg);
  }

  .responsive-device--tablet {
    transform: rotate(8deg);
  }

}


/* =========================================================
   RESPONSIVE BAND - TABLET PEQUENO / MOBILE GRANDE
========================================================= */
@media (max-width: 768px) {
  .responsive-band {
    width: calc(100% - 24px);
    margin: 28px auto 0;
    padding: 26px 18px 30px;
    border-radius: 20px;
  }

  .responsive-band__title-line--light {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .responsive-band__title-line--stroke {
    font-size: clamp(2.45rem, 8.8vw, 3.9rem);
    -webkit-text-stroke: 1.3px #101010;
  }

  .responsive-band__visual {
    display: grid;
    grid-template-columns: 78px 350px 92px;
    align-items: end;
    justify-content: center;
    gap: 0;
    margin-top: 26px;
    min-height: auto;
    justify-items: center;
  }

  .responsive-device-shell--phone,
  .responsive-device-shell--laptop,
  .responsive-device-shell--tablet {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 0;
    height: auto;
  }

  .responsive-device-shell--phone {
    width: 138px;
    justify-self: end;
    z-index: 2;
  }

  .responsive-device-shell--laptop {
    width: 100%;
    max-width: 350px;
    justify-self: center;
    z-index: 3;
  }

  .responsive-device-shell--tablet {
    width: 168px;
    justify-self: start;
    z-index: 2;
  }

  .responsive-device--phone,
  .responsive-device--laptop,
  .responsive-device--tablet {
    height: auto;
    width: 100%;
  }

  .responsive-device--phone {
    transform: rotate(-12deg);
  }

  .responsive-device--tablet {
    transform: rotate(12deg);
  }
}

/* =========================================================
   RESPONSIVE BAND - MOBILE
========================================================= */
@media (max-width: 560px) {
  .responsive-band {
    width: calc(100% - 24px);
    padding: 22px 14px 26px;
  }

  .responsive-band__title-line--light {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 0.98;
  }

  .responsive-band__title-line--stroke {
    font-size: clamp(2.15rem, 10.8vw, 3.1rem);
    line-height: 0.98;
    -webkit-text-stroke: 1.1px #101010;
  }

  .responsive-band__visual {
  display: grid;
  grid-template-columns: 82px 205px 92px;
  justify-content: center;
  align-items: end;
  column-gap: 0;
  margin-top: 22px;
  min-height: auto;
}

.responsive-device-shell--phone,
.responsive-device-shell--laptop,
.responsive-device-shell--tablet {
  justify-self: center;
}

.responsive-device-shell--phone {
  width: 82px;
  margin-right: -8px;
  z-index: 2;
}

.responsive-device-shell--laptop {
  width: 100%;
  max-width: 205px;
  z-index: 3;
}

.responsive-device-shell--tablet {
  width: 92px;
  margin-left: -8px;
  z-index: 2;
}

  .responsive-device--phone,
  .responsive-device--laptop,
  .responsive-device--tablet {
    height: auto;
    width: 100%;
  }

  .responsive-device--phone {
    transform: rotate(-12deg);
  }

  .responsive-device--tablet {
    transform: rotate(12deg);
  }

  .responsive-band__glow--one {
    width: 150px;
    height: 150px;
  }

  .responsive-band__glow--two {
    width: 130px;
    height: 130px;
  }
}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 390px) {

  .responsive-band {
    padding-inline: 14px;
  }

  .responsive-band__visual {
    gap:
      16px
      28px;
  }

  .responsive-device-shell--laptop {
    width: 92%;
  }

  .responsive-device-shell--phone {
    width: 64px;
  }

  .responsive-device-shell--tablet {
    width: 78px;
  }

}

/* =========================================================
   ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .responsive-device--laptop,
  .responsive-device--phone,
  .responsive-device--tablet {
    animation: none;
  }

  .responsive-device-shell {
    transition: none;
  }

}















/* =========================================================
   HOME — SERVIÇOS
========================================================= */

.home-services {
  position: relative;

  padding: 32px 0 140px;

  background: #080808;
  color: #ffffff;

  overflow: hidden;

  font-family: "Inter", sans-serif;
}


/* grid técnico bem sutil no fundo */

.home-services::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 12%,
      #000 88%,
      transparent 100%
    );
}


.home-services .container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   TOPO
========================================================= */

.home-services__header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(280px, 0.6fr);

  gap: 80px;

  align-items: end;

  padding-bottom: 90px;
}


.home-services__intro {
  max-width: 900px;
}


/* =========================================================
   EYEBROW
========================================================= */

.home-services__eyebrow {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 24px;

  font-family: "Inter", sans-serif;

  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: #777777;
}


/* bolinha vermelha padrão das seções */

.home-services__eyebrow-dot {
  width: 6px;
  height: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #e2242e;

  box-shadow:
    0 0 0 4px rgba(226, 36, 46, 0.06),
    0 0 10px rgba(226, 36, 46, 0.18);
}


/* =========================================================
   TÍTULO
========================================================= */

.home-services__title {
  max-width: 760px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(3rem, 4.2vw, 4.6rem);
  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.05em;

  color: #ffffff;
}


.home-services__title span {
  display: block;

  margin-top: 2px;

  color: #e2242e;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.home-services__description {
  max-width: 410px;

  margin: 0 0 6px;

  font-family: "Inter", sans-serif;

  font-size: 0.94rem;
  line-height: 1.75;

  color: #777777;
}


/* =========================================================
   LISTA
========================================================= */

.home-services__list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.home-service {
  position: relative;

  display: grid;

  grid-template-columns:
    80px
    minmax(0, 1fr)
    minmax(260px, 340px)
    42px;

  gap: 30px;

  align-items: center;

  min-height: 185px;

  padding: 34px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  transition:
    padding 0.35s ease,
    background-color 0.35s ease;
}


/* brilho discreto no hover */

.home-service::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0;

  background:
    linear-gradient(
      90deg,
      rgba(226, 36, 46, 0.07),
      rgba(226, 36, 46, 0.015) 48%,
      transparent 80%
    );

  transition: opacity 0.35s ease;

  pointer-events: none;
}


.home-service:hover::before {
  opacity: 1;
}


.home-service:hover {
  padding-left: 18px;
  padding-right: 18px;
}


/* =========================================================
   NÚMERO
========================================================= */

.home-service__number {
  position: relative;
  z-index: 2;

  align-self: flex-start;

  padding-top: 8px;

  font-family:
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;

  font-size: 0.68rem;

  letter-spacing: 0.1em;

  color: #4f4f4f;

  transition: color 0.3s ease;
}


.home-service:hover .home-service__number {
  color: #e2242e;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.home-service__content {
  position: relative;
  z-index: 2;
}


.home-service__content h3 {
  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 500;

  line-height: 1;

  letter-spacing: -0.045em;

  color: #f5f5f5;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


.home-service:hover .home-service__content h3 {
  color: #ffffff;

  transform: translateX(4px);
}


.home-service__content p {
  max-width: 690px;

  margin: 18px 0 0;

  font-family: "Inter", sans-serif;

  font-size: 0.88rem;
  line-height: 1.7;

  color: #707070;
}


/* =========================================================
   TAGS
========================================================= */

.home-service__tags {
  position: relative;
  z-index: 2;

  display: flex;
  flex-wrap: wrap;

  justify-content: flex-start;

  gap: 7px;
}


.home-service__tags span {
  display: inline-flex;

  align-items: center;

  min-height: 30px;

  padding: 0 11px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;

  background: rgba(255, 255, 255, 0.015);

  font-family: "Inter", sans-serif;

  font-size: 0.62rem;

  letter-spacing: 0.02em;

  color: #696969;

  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease;
}


.home-service:hover .home-service__tags span {
  color: #999999;

  border-color: rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.025);
}


/* =========================================================
   SETA
========================================================= */

.home-service__arrow {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: flex-end;

  font-size: 1.15rem;

  color: #4c4c4c;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


.home-service:hover .home-service__arrow {
  color: #e2242e;

  transform: translate(4px, -4px);
}


/* =========================================================
   RODAPÉ DA SEÇÃO
========================================================= */

.home-services__footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 50px;

  padding-top: 52px;

  font-family: "Inter", sans-serif;
}


.home-services__footer p {
  max-width: 500px;

  margin: 0;

  font-size: 0.82rem;
  line-height: 1.7;

  color: #5f5f5f;
}


.home-services__cta {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding-bottom: 4px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.28);

  font-family: "Inter", sans-serif;

  color: #e8e8e8;

  font-size: 0.83rem;
  font-weight: 500;

  text-decoration: none;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}


.home-services__cta span {
  transition: transform 0.3s ease;
}


.home-services__cta:hover {
  color: #ffffff;

  border-color: #e2242e;
}


.home-services__cta:hover span {
  transform: translate(4px, -4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .home-services {
    padding: 70px 0 120px;
  }


  .home-services__header {
    grid-template-columns: 1fr;

    gap: 34px;

    padding-bottom: 70px;
  }


  .home-services__description {
    max-width: 580px;
  }


  .home-services__title {
    font-size: clamp(2.9rem, 7vw, 4.2rem);
  }


  .home-service {
    grid-template-columns:
      58px
      minmax(0, 1fr)
      36px;

    gap: 22px;
  }


  .home-service__tags {
    grid-column: 2 / 3;

    margin-top: -8px;
  }


  .home-service__arrow {
    grid-column: 3;
    grid-row: 1;

    align-self: center;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .home-services {
    padding: 60px 0 90px;
  }


  .home-services__header {
    padding-bottom: 58px;
  }


  .home-services__eyebrow {
    margin-bottom: 20px;

    font-size: 0.6rem;
  }


  .home-services__eyebrow-dot {
    width: 5px;
    height: 5px;
  }


  .home-services__title {
    font-size: clamp(2.5rem, 10vw, 3.4rem);

    line-height: 1;
  }


  .home-services__description {
    font-size: 0.87rem;
  }


  .home-service {
    grid-template-columns:
      36px
      minmax(0, 1fr);

    gap: 16px;

    min-height: auto;

    padding: 34px 0;
  }


  .home-service:hover {
    padding-left: 0;
    padding-right: 0;
  }


  .home-service__number {
    padding-top: 5px;
  }


  .home-service__content {
    padding-right: 30px;
  }


  .home-service__content h3 {
    font-size: 2rem;
  }


  .home-service__content p {
    margin-top: 14px;

    font-size: 0.82rem;
  }


  .home-service__tags {
    grid-column: 2;

    padding-right: 16px;
  }


  .home-service__arrow {
    position: absolute;

    top: 37px;
    right: 2px;

    grid-column: auto;
    grid-row: auto;
  }


  .home-services__footer {
    flex-direction: column;

    align-items: flex-start;

    gap: 30px;

    padding-top: 40px;
  }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 420px) {

  .home-services__title {
    font-size: 2.45rem;
  }


  .home-service__content h3 {
    font-size: 1.8rem;
  }

}














/* =========================================================
   PROCESSO
========================================================= */

.processo {
  position: relative;
  width: 100%;
  background: #ffffff;
  color: #080808;
  padding: 88px 0 92px;
  overflow: hidden;
  border-top: 1px solid rgba(8, 8, 8, 0.06);
  border-bottom: 1px solid rgba(8, 8, 8, 0.06);
}

.processo__container {
  position: relative;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.processo__header {
  width: min(760px, 100%);
  margin: 0 auto 70px;
  text-align: center;
}

.processo__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 18px;

  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #080808;
}

.processo__dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;

  background: #e10600;
  border-radius: 50%;
}

.processo__title {
  margin: 0;

  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.045em;

  color: #080808;
}

.processo__description {
  width: min(660px, 100%);
  margin: 20px auto 0;

  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;

  color: #666666;
}


/* =========================================================
   ETAPAS
========================================================= */

.processo__steps {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}


/* Linha horizontal */

.processo__steps::before {
  content: "";

  position: absolute;
  top: 22px;
  left: 12.5%;
  right: 12.5%;

  height: 1px;

  background: rgba(8, 8, 8, 0.14);

  z-index: 0;
}


/* =========================================================
   CADA ETAPA
========================================================= */

.processo__step {
  position: relative;
  z-index: 1;

  min-width: 0;

  text-align: center;
}


/* Número */

.processo__number {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  margin: 0 auto 24px;

  border-radius: 50%;

  background: #e10600;
  border: 5px solid #ffffff;

  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;

  color: #ffffff;

  box-sizing: content-box;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   CONTEÚDO DA ETAPA
========================================================= */

.processo__content {
  width: 100%;
  max-width: 265px;
  margin: 0 auto;
}


/* Ícone */

.processo__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  margin: 0 auto 13px;

  color: #e10600;
}

.processo__icon svg {
  display: block;
  width: 23px;
  height: 23px;
}


/* Título */

.processo__content h3 {
  margin: 0 0 12px;

  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.025em;

  color: #080808;
}


/* Texto */

.processo__content p {
  margin: 0;

  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;

  color: #6d6d6d;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .processo__step:hover .processo__number {
    transform: translateY(-4px);

    box-shadow:
      0 8px 22px rgba(225, 6, 0, 0.18);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .processo {
    padding: 76px 0 80px;
  }

  .processo__header {
    margin-bottom: 54px;
  }

  .processo__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 32px;
  }

  .processo__steps::before {
    display: none;
  }

  .processo__content {
    max-width: 300px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .processo {
    padding: 64px 0 68px;
  }

  .processo__header {
    width: 100%;
    margin-bottom: 48px;
    text-align: left;
  }

  .processo__eyebrow {
    justify-content: flex-start;
    margin-bottom: 14px;
  }

  .processo__title {
    font-size: clamp(1.9rem, 10vw, 2.35rem);
    line-height: 1.08;
  }

  .processo__description {
    margin: 17px 0 0;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .processo__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .processo__step {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 18px;

    text-align: left;

    padding-bottom: 36px;
  }

  .processo__step:last-child {
    padding-bottom: 0;
  }


  /* Linha vertical mobile */

  .processo__step:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 48px;
    bottom: 0;
    left: 23px;

    width: 1px;

    background: rgba(8, 8, 8, 0.12);
  }


  /* Número */

  .processo__number {
    grid-column: 1;
    grid-row: 1;

    width: 40px;
    height: 40px;

    margin: 0;

    border-width: 4px;

    box-sizing: border-box;
  }


  /* Conteúdo */

  .processo__content {
    grid-column: 2;
    grid-row: 1;

    max-width: none;
    margin: 0;
  }

  .processo__icon {
    justify-content: flex-start;

    width: 26px;
    height: 26px;

    margin: 1px 0 10px;
  }

  .processo__icon svg {
    width: 21px;
    height: 21px;
  }

  .processo__content h3 {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .processo__content p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

}














/* =========================================================
   PROJETOS
========================================================= */

.projects {
  position: relative;

  width: 100%;

  padding: 22px 0 120px;

  background: #080808;

  overflow: hidden;

  font-family: "Inter", sans-serif;
}


/* garante a fonte padrão da seção */

.projects *,
.projects *::before,
.projects *::after {
  font-family: "Inter", sans-serif;
}


/* =========================================================
   ILUMINAÇÃO AMBIENTE
========================================================= */

.projects::before {
  content: "";

  position: absolute;

  top: 160px;
  left: 50%;

  width: 1100px;
  height: 650px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.045) 0%,
      rgba(255, 255, 255, 0.018) 34%,
      rgba(255, 255, 255, 0.006) 52%,
      transparent 72%
    );

  filter: blur(25px);

  pointer-events: none;
}


/* pequena luz vermelha extremamente sutil */

.projects::after {
  content: "";

  position: absolute;

  top: 260px;
  left: 14%;

  width: 360px;
  height: 360px;

  background:
    radial-gradient(
      circle,
      rgba(226, 36, 46, 0.04) 0%,
      transparent 68%
    );

  filter: blur(45px);

  pointer-events: none;
}


.projects > .container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.projects__header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(280px, 0.6fr);

  gap: 80px;

  align-items: end;

  margin-bottom: 70px;
}


.projects__heading {
  max-width: 900px;
}


/* =========================================================
   LABEL
========================================================= */

.projects .section-label {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 24px;

  font-family: "Inter", sans-serif;

  font-size: 0.68rem;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: #777777;
}


/* bolinha vermelha padrão das seções */

.projects .section-label::before {
  content: "";

  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  border-radius: 50%;

  background: #e2242e;

  box-shadow:
    0 0 0 4px rgba(226, 36, 46, 0.06),
    0 0 10px rgba(226, 36, 46, 0.18);
}


/* =========================================================
   TÍTULO
========================================================= */

.projects__title {
  max-width: 760px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(3rem, 4.2vw, 4.6rem);
  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.05em;

  color: #ffffff;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.projects__description {
  max-width: 410px;

  margin: 0 0 6px;

  font-family: "Inter", sans-serif;

  font-size: 0.94rem;
  font-weight: 400;

  line-height: 1.75;

  letter-spacing: 0;

  color: #777777;
}


/* =========================================================
   GRID
========================================================= */

.projects__grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.project-card {
  position: relative;

  min-width: 0;

  border-radius: 17px;

  background: #101010;

  border: 1px solid rgba(255, 255, 255, 0.075);

  overflow: hidden;

  isolation: isolate;

  transform: translateZ(0);

  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


.project-card:hover {
  transform: translateY(-7px);

  border-color: rgba(255, 255, 255, 0.15);

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   BORDA PREMIUM
========================================================= */

.project-card::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 10;

  padding: 1px;

  border-radius: inherit;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.26) 0%,
      rgba(255, 255, 255, 0.04) 27%,
      rgba(255, 255, 255, 0.01) 55%,
      rgba(255, 255, 255, 0.11) 100%
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.45s ease;
}


.project-card:hover::before {
  opacity: 1;
}


/* =========================================================
   LUZ INTERNA NO HOVER
========================================================= */

.project-card::after {
  content: "";

  position: absolute;

  top: -45%;
  left: -30%;

  z-index: 3;

  width: 75%;
  height: 150%;

  background:
    linear-gradient(
      115deg,
      transparent 20%,
      rgba(255, 255, 255, 0.025) 43%,
      rgba(255, 255, 255, 0.07) 50%,
      rgba(255, 255, 255, 0.02) 57%,
      transparent 78%
    );

  transform:
    translateX(-100%)
    rotate(8deg);

  pointer-events: none;

  opacity: 0;

  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}


.project-card:hover::after {
  transform:
    translateX(210%)
    rotate(8deg);

  opacity: 1;
}


/* =========================================================
   LINK
========================================================= */

.project-card__link {
  position: relative;

  display: block;

  width: 100%;

  aspect-ratio: 16 / 10;

  overflow: hidden;

  color: inherit;

  text-decoration: none;

  cursor: pointer;
}


/* =========================================================
   IMAGEM
========================================================= */

.project-card__media {
  position: absolute;

  inset: 0;

  z-index: 1;

  width: 100%;
  height: 100%;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #161616,
      #0b0b0b
    );
}


.project-card__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.002);

  filter:
    saturate(0.94)
    contrast(1.02);

  transition:
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s ease;
}


.project-card:hover .project-card__media img {
  transform: scale(1.045);

  filter:
    saturate(1)
    contrast(1.04);
}


/* =========================================================
   OVERLAY
========================================================= */

.project-card__overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      to top,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.62) 22%,
      rgba(5, 5, 5, 0.25) 46%,
      rgba(5, 5, 5, 0.03) 72%,
      transparent 100%
    );

  transition: background 0.45s ease;
}


.project-card:hover .project-card__overlay {
  background:
    linear-gradient(
      to top,
      rgba(5, 5, 5, 0.94) 0%,
      rgba(5, 5, 5, 0.66) 23%,
      rgba(5, 5, 5, 0.24) 48%,
      rgba(5, 5, 5, 0.02) 74%,
      transparent 100%
    );
}


/* =========================================================
   NÚMERO
========================================================= */

.project-card__number {
  position: absolute;

  top: 17px;
  left: 17px;

  z-index: 6;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 38px;
  height: 27px;

  padding: 0 9px;

  border-radius: 999px;

  font-family: "Inter", sans-serif;

  font-size: 0.63rem;
  font-weight: 550;

  letter-spacing: 0.12em;

  color: rgba(255, 255, 255, 0.68);

  background: rgba(8, 8, 8, 0.48);

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12);

  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.project-card:hover .project-card__number {
  color: #ffffff;

  background: rgba(8, 8, 8, 0.7);

  border-color: rgba(255, 255, 255, 0.17);

  transform: translateY(-1px);
}


/* =========================================================
   CONTEÚDO
========================================================= */

.project-card__content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 6;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;

  padding: 23px 24px;
}


.project-card__info {
  min-width: 0;

  transform: translateY(0);

  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}


.project-card:hover .project-card__info {
  transform: translateY(-2px);
}


/* =========================================================
   TÍTULO DO CARD
========================================================= */

.project-card__title {
  margin: 0 0 7px;

  font-family: "Inter", sans-serif;

  font-size: 1.04rem;
  font-weight: 600;

  line-height: 1.15;

  letter-spacing: -0.025em;

  color: #ffffff;
}


/* =========================================================
   CATEGORIA
========================================================= */

.project-card__category {
  display: block;

  font-family: "Inter", sans-serif;

  font-size: 0.72rem;
  font-weight: 400;

  line-height: 1;

  letter-spacing: 0.01em;

  color: rgba(255, 255, 255, 0.56);
}


/* =========================================================
   AÇÃO DO CARD
========================================================= */

.project-card__action {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.project-card__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 0 12px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  background: rgba(8, 8, 8, 0.78);
  color: #ffffff;

  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.project-card:hover .project-card__hint {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


/* =========================================================
   SETA
========================================================= */

.project-card__arrow {
  display: grid;

  place-items: center;

  width: 39px;
  height: 39px;

  flex: 0 0 39px;

  border-radius: 50%;

  font-family: "Inter", sans-serif;

  font-size: 0.98rem;
  font-weight: 400;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.09);

  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}


/* seta vira destaque no hover */

.project-card:hover .project-card__arrow {
  transform:
    translate(3px, -3px)
    scale(1.04);

  color: #080808;

  background: #ffffff;

  border-color: #ffffff;

  box-shadow:
    0 8px 30px rgba(255, 255, 255, 0.13);
}


/* =========================================================
   DETALHE VERMELHO DISCRETO
========================================================= */

.project-card__content::before {
  content: "";

  position: absolute;

  left: 24px;
  bottom: 0;

  width: 0;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      #e2242e,
      rgba(226, 36, 46, 0)
    );

  opacity: 0;

  transition:
    width 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}


.project-card:hover .project-card__content::before {
  width: 85px;

  opacity: 0.8;
}


/* =========================================================
   FOCO / ACESSIBILIDADE
========================================================= */

.project-card__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);

  outline-offset: -3px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .projects {
    padding: 70px 0 100px;
  }


  .projects__header {
    grid-template-columns: 1fr;

    gap: 34px;

    margin-bottom: 60px;
  }


  .projects__description {
    max-width: 580px;
  }


  .projects__title {
    font-size: clamp(2.9rem, 7vw, 4.2rem);
  }


  .projects__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 16px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {

  .projects {
    padding: 60px 0 82px;
  }


  .projects::before {
    width: 650px;
    height: 600px;

    top: 120px;
  }


  .projects__header {
    gap: 26px;

    margin-bottom: 48px;
  }


  .projects .section-label {
    margin-bottom: 20px;

    font-size: 0.6rem;
  }


  .projects .section-label::before {
    width: 5px;
    height: 5px;

    flex-basis: 5px;
  }


  .projects__title {
    font-size: clamp(2.5rem, 10vw, 3.4rem);

    line-height: 1;

    letter-spacing: -0.05em;
  }


  .projects__description {
    max-width: 100%;

    margin: 0;

    font-size: 0.87rem;

    line-height: 1.7;
  }


  .projects__grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .project-card {
    border-radius: 15px;
  }


  .project-card__link {
    aspect-ratio: 16 / 10.4;
  }


  .project-card__content {
    padding: 20px;
  }


  .project-card__content::before {
    left: 20px;
  }


  .project-card__number {
    top: 15px;
    left: 15px;
  }


  .project-card__title {
    font-size: 1rem;
  }


  .project-card__arrow {
    width: 37px;
    height: 37px;

    flex-basis: 37px;
  }
  .project-card__hint {
    display: none;
  }

}


/* =========================================================
   DISPOSITIVOS SEM HOVER
========================================================= */

@media (hover: none) {

  .project-card:hover {
    transform: none;
  }


  .project-card:hover .project-card__media img {
    transform: none;
  }


  .project-card:hover .project-card__arrow {
    transform: none;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.09);

    border-color: rgba(255, 255, 255, 0.15);
  }


  .project-card::after {
    display: none;
  }

}


/* =========================================================
   REDUZIR ANIMAÇÕES
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .project-card,
  .project-card::before,
  .project-card::after,
  .project-card__media img,
  .project-card__number,
  .project-card__info,
  .project-card__arrow,
  .project-card__content::before {
    transition: none;
  }

}















/* =========================================================
   OFERTA LANDING PAGE
========================================================= */

.offer-strip {
  position: relative;

  width: 100%;

  padding: 28px 0 42px;

  background: #080808;

  overflow: hidden;
}


/* =========================================================
   WRAPPER
========================================================= */

.offer-strip__wrapper {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.9fr);

  align-items: center;

  gap: 64px;

  min-height: 0;

  padding: 44px 64px;

  background:
    linear-gradient(
      rgba(8, 8, 8, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.045) 1px,
      transparent 1px
    ),
    #f7f7f5;

  background-size: 64px 64px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 30px;

  overflow: hidden;
}


/* brilho suave */

.offer-strip__wrapper::before {
  content: "";

  position: absolute;

  width: 560px;
  height: 560px;

  right: -140px;
  top: -220px;

  background:
    radial-gradient(
      circle,
      rgba(227, 38, 54, 0.12) 0%,
      rgba(227, 38, 54, 0.045) 38%,
      transparent 70%
    );

  pointer-events: none;
}


/* linha vermelha superior */

.offer-strip__wrapper::after {
  content: "";

  position: absolute;

  top: 0;
  left: 64px;

  width: 105px;
  height: 3px;

  background: #e32636;
}


/* =========================================================
   CONTEÚDO ESQUERDO
========================================================= */

.offer-strip__content {
  position: relative;
  z-index: 2;

  max-width: 620px;

  font-family: inherit;
}


/* =========================================================
   EYEBROW
========================================================= */

.offer-strip__eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 18px;

  font-family: inherit;

  font-size: 11px;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: #6f6f6f;
}


.offer-strip__eyebrow::before {
  content: "";

  width: 7px;
  height: 7px;

  flex-shrink: 0;

  background: #e32636;

  border-radius: 50%;

  box-shadow:
    0 0 0 5px rgba(227, 38, 54, 0.09);
}


/* =========================================================
   TÍTULO
========================================================= */

.offer-strip__title {
  display: flex;

  flex-direction: column;
  align-items: flex-start;

  margin: 0;

  font-family: inherit;

  font-size: clamp(42px, 3.7vw, 58px);
  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -0.055em;

  color: #080808;
}


.offer-strip__title span {
  display: block;

  color: #080808;
}


/* =========================================================
   TEXTO
========================================================= */

.offer-strip__text {
  max-width: 580px;

  margin: 20px 0 0;

  font-family: inherit;

  font-size: 14px;
  font-weight: 400;

  line-height: 1.65;

  color: #626262;
}


/* =========================================================
   TAGS
========================================================= */

.offer-strip__tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 20px;
}


.offer-strip__tag {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 32px;

  padding: 0 13px;

  background: rgba(255, 255, 255, 0.58);

  border: 1px solid rgba(0, 0, 0, 0.1);

  border-radius: 999px;

  font-family: inherit;

  font-size: 11px;
  font-weight: 500;

  color: #242424;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


/* =========================================================
   URGÊNCIA
========================================================= */

.offer-strip__urgency {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  max-width: 540px;

  margin-top: 22px;

  padding-top: 17px;

  border-top: 1px solid rgba(0, 0, 0, 0.09);
}


.offer-strip__urgency-dot {
  position: relative;

  width: 8px;
  height: 8px;

  margin-top: 5px;

  flex-shrink: 0;

  background: #e32636;

  border-radius: 50%;
}


.offer-strip__urgency-dot::before {
  content: "";

  position: absolute;

  inset: -5px;

  border: 1px solid rgba(227, 38, 54, 0.2);

  border-radius: 50%;

  animation: offerPulse 2.4s ease-out infinite;
}


@keyframes offerPulse {

  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }

}


.offer-strip__urgency-content {
  display: flex;

  flex-direction: column;

  gap: 4px;
}


.offer-strip__urgency-content strong {
  font-family: inherit;

  font-size: 12px;
  font-weight: 600;

  line-height: 1.4;

  color: #151515;
}


.offer-strip__urgency-content span {
  font-family: inherit;

  font-size: 11px;
  font-weight: 400;

  line-height: 1.45;

  color: #787878;
}


/* =========================================================
   BOTÃO
========================================================= */

.offer-strip__actions {
  display: flex;

  align-items: center;

  margin-top: 20px;
}


.offer-strip__btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 21px;

  border-radius: 9px;

  font-family: inherit;

  font-size: 13px;
  font-weight: 500;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.offer-strip__btn--primary {
  color: #ffffff;

  background: #080808;

  border: 1px solid #080808;
}


.offer-strip__btn--primary::after {
  content: "↗";

  margin-left: 12px;

  font-size: 14px;

  transition: transform 0.25s ease;
}


.offer-strip__btn--primary:hover {
  background: #171717;

  transform: translateY(-2px);

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.16);
}


.offer-strip__btn--primary:hover::after {
  transform: translate(2px, -2px);
}


/* =========================================================
   PREÇO / LADO DIREITO
========================================================= */

.offer-strip__price {
  position: relative;
  z-index: 2;

  width: 100%;

  padding-left: 54px;

  border-left: 1px solid rgba(0, 0, 0, 0.09);
}


/* =========================================================
   CABEÇALHO DO PREÇO
========================================================= */

.offer-strip__price-top {
  display: flex;

  flex-direction: column;
  align-items: flex-start;

  gap: 8px;
}


.offer-strip__price-kicker {
  font-family: inherit;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  color: #1d1d1d;
}


.offer-strip__price-label {
  font-family: inherit;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: #7b7b7b;
}


/* =========================================================
   VALOR PRINCIPAL
========================================================= */

.offer-strip__price-value {
  position: relative;

  display: flex;

  align-items: flex-start;

  margin-top: 8px;
}


.offer-strip__currency {
  margin-top: 15px;
  margin-right: 8px;

  font-family: inherit;

  font-size: clamp(23px, 1.8vw, 30px);
  font-weight: 600;

  line-height: 1;

  letter-spacing: -0.04em;

  color: #080808;
}


.offer-strip__price-value strong {
  font-family: inherit;

  font-size: clamp(88px, 8vw, 122px);
  font-weight: 700;

  line-height: 0.85;

  letter-spacing: -0.085em;

  color: #080808;
}


/* ponto vermelho */

.offer-strip__price-value::after {
  content: "";

  position: absolute;

  right: 10px;
  bottom: 6px;

  width: 10px;
  height: 10px;

  background: #e32636;

  border-radius: 50%;
}


/* =========================================================
   LINHA
========================================================= */

.offer-strip__price-line {
  width: 100%;
  height: 1px;

  margin: 26px 0 18px;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.16),
      rgba(0, 0, 0, 0.04)
    );
}


/* =========================================================
   INFORMAÇÕES
========================================================= */

.offer-strip__price-info {
  display: flex;

  flex-direction: column;
}


.offer-strip__price-item {
  display: grid;

  grid-template-columns:
    32px
    1fr;

  align-items: start;

  gap: 12px;

  padding: 10px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}


.offer-strip__price-item:first-child {
  padding-top: 0;
}


.offer-strip__price-item:last-child {
  border-bottom: none;
}


.offer-strip__price-item > span {
  font-family: inherit;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.08em;

  color: #e32636;
}


.offer-strip__price-item p {
  margin: 0;

  font-family: inherit;

  font-size: 11px;
  font-weight: 400;

  line-height: 1.45;

  color: #565656;
}


/* =========================================================
   OBSERVAÇÃO
========================================================= */

.offer-strip__price-note {
  position: relative;

  margin: 17px 0 0;

  padding-left: 15px;

  font-family: inherit;

  font-size: 10px;
  font-weight: 500;

  line-height: 1.45;

  letter-spacing: 0.03em;

  color: #777777;
}


.offer-strip__price-note::before {
  content: "";

  position: absolute;

  left: 0;
  top: 5px;

  width: 5px;
  height: 5px;

  background: #e32636;

  border-radius: 50%;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .offer-strip__price-value strong {
    transition:
      transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
      letter-spacing 0.35s ease;
  }


  .offer-strip__price:hover .offer-strip__price-value strong {
    transform: translateX(4px);

    letter-spacing: -0.075em;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .offer-strip {
    padding: 40px 0;
  }


  .offer-strip__wrapper {
    grid-template-columns: 1fr;

    gap: 44px;

    padding: 48px 42px;
  }


  .offer-strip__wrapper::after {
    left: 42px;
  }


  .offer-strip__content {
    max-width: 720px;
  }


  .offer-strip__price {
    max-width: 720px;

    padding-top: 38px;
    padding-left: 0;

    border-left: none;

    border-top: 1px solid rgba(0, 0, 0, 0.09);
  }


  .offer-strip__price-value strong {
    font-size: clamp(88px, 16vw, 125px);
  }


  .offer-strip__price-value::after {
    right: auto;

    left: min(370px, 75%);
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .offer-strip {
    padding: 30px 0;
  }


  .offer-strip__wrapper {
    min-height: auto;

    padding: 40px 22px 26px;

    gap: 38px;

    border-radius: 22px;

    background-size: 44px 44px;
  }


  .offer-strip__wrapper::after {
    left: 22px;

    width: 78px;
  }


  .offer-strip__eyebrow {
    margin-bottom: 16px;
  }


  .offer-strip__title {
    font-size: clamp(36px, 10vw, 46px);
  }


  .offer-strip__text {
    margin-top: 18px;

    font-size: 13px;

    line-height: 1.6;
  }


  .offer-strip__tags {
    gap: 7px;

    margin-top: 20px;
  }


  .offer-strip__tag {
    min-height: 32px;

    padding: 0 11px;

    font-size: 10px;
  }


  .offer-strip__urgency {
    margin-top: 22px;

    padding-top: 17px;
  }


  .offer-strip__actions {
    margin-top: 22px;
  }


  .offer-strip__btn {
    width: 100%;

    min-height: 46px;
  }


  .offer-strip__price {
    padding-top: 32px;
  }


  .offer-strip__price-value {
    margin-top: 12px;
  }


  .offer-strip__currency {
    margin-top: 11px;

    font-size: 22px;
  }


  .offer-strip__price-value strong {
    font-size: clamp(78px, 27vw, 106px);
  }


  .offer-strip__price-value::after {
    width: 8px;
    height: 8px;

    left: auto;
    right: 0;
    bottom: 5px;
  }


  .offer-strip__price-line {
    margin: 25px 0 18px;
  }


  .offer-strip__price-item {
    grid-template-columns:
      28px
      1fr;

    gap: 9px;

    padding: 9px 0;
  }


  .offer-strip__price-item p {
    font-size: 10px;
  }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .offer-strip__urgency-dot::before {
    animation: none;
  }


  .offer-strip__btn,
  .offer-strip__price-value strong {
    transition: none;
  }

}














/* =========================================================
   FAQ
========================================================= */

.faq-section {
  position: relative;

  width: 100%;

  padding: 22px 0 110px;

  background: #080808;

  overflow: hidden;

  font-family: "Inter", sans-serif;

  scroll-margin-top: 90px;
}


.faq-section * {
  font-family: "Inter", sans-serif;
}


/* =========================================================
   WRAPPER
========================================================= */

.faq-section__wrapper {
  position: relative;

  width: 100%;
}


/* glow extremamente sutil */

.faq-section__wrapper::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  top: -220px;
  right: -180px;

  background:
    radial-gradient(
      circle,
      rgba(227, 38, 54, 0.05),
      transparent 68%
    );

  pointer-events: none;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.faq-section__header {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(280px, 0.6fr);

  gap: 80px;

  align-items: end;

  margin-bottom: 70px;
}


.faq-section__intro {
  max-width: 900px;
}


/* =========================================================
   EYEBROW
========================================================= */

.faq-section__eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 24px;

  font-size: 0.68rem;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: #777777;
}


.faq-section__eyebrow::before {
  content: "";

  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  background: #e2242e;

  border-radius: 50%;

  box-shadow:
    0 0 0 4px rgba(226, 36, 46, 0.06),
    0 0 10px rgba(226, 36, 46, 0.18);
}


/* =========================================================
   TÍTULO
========================================================= */

.faq-section__title {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  max-width: 800px;

  margin: 0;

  font-size: clamp(3rem, 4.2vw, 4.6rem);
  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.05em;

  color: #ffffff;
}


.faq-section__title span {
  display: block;

  margin-top: 2px;

  color: #e2242e;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.faq-section__description {
  max-width: 410px;

  margin: 0 0 6px;

  font-size: 0.94rem;
  font-weight: 400;

  line-height: 1.75;

  letter-spacing: 0;

  color: #777777;
}


/* =========================================================
   LISTA
========================================================= */

.faq-list {
  position: relative;
  z-index: 2;

  width: 100%;

  border-top: 1px solid rgba(255, 255, 255, 0.11);
}


/* =========================================================
   ITEM
========================================================= */

.faq-item {
  position: relative;

  width: 100%;

  border-bottom: 1px solid rgba(255, 255, 255, 0.11);

  background: transparent;
}


.faq-item[open] {
  background:
    linear-gradient(
      90deg,
      rgba(227, 38, 54, 0.035) 0%,
      rgba(227, 38, 54, 0.012) 30%,
      transparent 70%
    );
}


/* linha lateral do item aberto */

.faq-item[open]::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 2px;

  background:
    linear-gradient(
      180deg,
      transparent 0%,
      #e32636 20%,
      #e32636 80%,
      transparent 100%
    );

  box-shadow:
    0 0 18px rgba(227, 38, 54, 0.16);
}


/* =========================================================
   SUMMARY / PERGUNTA
========================================================= */

.faq-item__question {
  display: grid;

  grid-template-columns:
    70px
    minmax(0, 1fr)
    46px;

  align-items: center;

  gap: 22px;

  min-height: 96px;

  padding: 0 2px;

  list-style: none;

  cursor: pointer;

  user-select: none;

  transition:
    padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease;
}


.faq-item[open] .faq-item__question {
  padding-left: 14px;
}


.faq-item__question::-webkit-details-marker {
  display: none;
}


.faq-item__question::marker {
  display: none;

  content: "";
}


/* =========================================================
   NÚMERO
========================================================= */

.faq-item__number {
  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.12em;

  color: #565656;

  transition:
    color 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


.faq-item[open] .faq-item__number {
  color: #e32636;

  transform: translateX(3px);
}


/* =========================================================
   TÍTULO DA PERGUNTA
========================================================= */

.faq-item__title {
  font-size: clamp(17px, 1.45vw, 19px);
  font-weight: 600;

  line-height: 1.4;

  letter-spacing: -0.02em;

  color: #e7e7e7;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.faq-item[open] .faq-item__title {
  color: #ffffff;
}


/* =========================================================
   ÍCONE +
========================================================= */

.faq-item__icon {
  position: relative;

  width: 42px;
  height: 42px;

  justify-self: end;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50%;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.faq-item__icon::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 12px;
  height: 1px;

  background: #bcbcbc;

  transform: translate(-50%, -50%);

  transition: background 0.25s ease;
}


.faq-item__icon::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 1px;
  height: 12px;

  background: #bcbcbc;

  transform: translate(-50%, -50%);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}


.faq-item[open] .faq-item__icon {
  border-color: rgba(227, 38, 54, 0.45);

  background: rgba(227, 38, 54, 0.075);

  transform: rotate(180deg);

  box-shadow:
    0 0 0 5px rgba(227, 38, 54, 0.025),
    0 0 25px rgba(227, 38, 54, 0.07);
}


.faq-item[open] .faq-item__icon::before {
  background: #e32636;
}


.faq-item[open] .faq-item__icon::after {
  opacity: 0;

  transform:
    translate(-50%, -50%)
    scaleY(0);
}


/* =========================================================
   RESPOSTA
========================================================= */

.faq-item__answer {
  position: relative;

  max-width: 910px;

  margin-left: 92px;

  padding:
    2px
    0
    34px
    0;

  animation: faqReveal 0.38s ease both;
}


.faq-item__answer p {
  max-width: 840px;

  margin: 0;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.8;

  color: #8c8c8c;
}


/* detalhe antes da resposta */

.faq-item[open] .faq-item__answer::before {
  content: "";

  position: absolute;

  left: -22px;
  top: 10px;

  width: 1px;

  height: calc(100% - 48px);

  background:
    linear-gradient(
      180deg,
      rgba(227, 38, 54, 0.28),
      transparent
    );
}


@keyframes faqReveal {

  from {
    opacity: 0;

    transform: translateY(-7px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }

}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .faq-item__question:hover .faq-item__title {
    color: #ffffff;

    transform: translateX(4px);
  }


  .faq-item__question:hover .faq-item__number {
    color: #e32636;
  }


  .faq-item:not([open]) .faq-item__question:hover {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.018),
        transparent 55%
      );
  }


  .faq-item:not([open]) .faq-item__question:hover .faq-item__icon {
    transform: rotate(90deg);

    border-color: rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.035);
  }

}


/* =========================================================
   RODAPÉ DO FAQ
========================================================= */

.faq-section__footer {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 50px;

  margin-top: 58px;

  padding-top: 34px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.faq-section__footer-content {
  max-width: 600px;
}


.faq-section__footer-label {
  display: block;

  margin-bottom: 10px;

  font-size: 18px;
  font-weight: 600;

  letter-spacing: -0.02em;

  color: #ffffff;
}


.faq-section__footer-content p {
  margin: 0;

  font-size: 14px;
  font-weight: 400;

  line-height: 1.65;

  color: #757575;
}


/* =========================================================
   CTA
========================================================= */

.faq-section__cta {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  min-height: 52px;

  padding: 0 22px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 10px;

  background: #ffffff;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  color: #080808;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.faq-section__cta::after {
  content: "↗";

  margin-left: 12px;

  font-size: 15px;

  transition: transform 0.25s ease;
}


.faq-section__cta:hover {
  transform: translateY(-2px);

  background: #f2f2f2;

  border-color: #ffffff;

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28);
}


.faq-section__cta:hover::after {
  transform: translate(2px, -2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .faq-section {
    padding: 70px 0 92px;
  }


  .faq-section__header {
    grid-template-columns: 1fr;

    gap: 34px;

    margin-bottom: 60px;
  }


  .faq-section__description {
    max-width: 580px;
  }


  .faq-section__title {
    font-size: clamp(2.9rem, 7vw, 4.2rem);
  }


  .faq-item__question {
    grid-template-columns:
      55px
      minmax(0, 1fr)
      42px;

    gap: 16px;

    min-height: 90px;
  }


  .faq-item__answer {
    max-width: none;

    margin-left: 71px;

    padding-right: 30px;
  }


  .faq-section__footer {
    align-items: flex-start;

    flex-direction: column;

    gap: 28px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .faq-section {
    padding: 60px 0 74px;
  }


  .faq-section__header {
    gap: 26px;

    margin-bottom: 48px;
  }


  .faq-section__eyebrow {
    margin-bottom: 20px;

    font-size: 0.6rem;
  }


  .faq-section__eyebrow::before {
    width: 5px;
    height: 5px;

    flex-basis: 5px;
  }


  .faq-section__title {
    font-size: clamp(2.5rem, 10vw, 3.4rem);

    line-height: 1;
  }


  .faq-section__description {
    max-width: 100%;

    margin: 0;

    font-size: 0.87rem;

    line-height: 1.7;
  }


  .faq-item__question {
    grid-template-columns:
      34px
      minmax(0, 1fr)
      38px;

    gap: 11px;

    min-height: 84px;
  }


  .faq-item[open] .faq-item__question {
    padding-left: 6px;
  }


  .faq-item__number {
    font-size: 9px;
  }


  .faq-item__title {
    font-size: 15px;

    line-height: 1.45;
  }


  .faq-item__icon {
    width: 36px;
    height: 36px;
  }


  .faq-item__answer {
    margin-left: 45px;

    padding:
      0
      10px
      28px
      0;
  }


  .faq-item__answer p {
    font-size: 13px;

    line-height: 1.75;
  }


  .faq-item[open] .faq-item__answer::before {
    display: none;
  }


  .faq-section__footer {
    margin-top: 48px;

    padding-top: 30px;
  }


  .faq-section__footer-label {
    font-size: 17px;
  }


  .faq-section__footer-content p {
    font-size: 13px;
  }


  .faq-section__cta {
    width: 100%;
  }

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .faq-item__answer {
    animation: none;
  }


  .faq-item__question,
  .faq-item__number,
  .faq-item__title,
  .faq-item__icon,
  .faq-section__cta {
    transition: none;
  }

}