/* =========================================================
   Base global
   ========================================================= */

:root {
  --blue-900: #071078;
  --blue-800: #08228e;
  --blue-600: #126ec5;
  --blue-500: #2f84d8;
  --yellow: #ffdb36;
  --cream: #fff1a8;
  --white: #ffffff;
  --cta: #73a4df;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--white);
  background: var(--blue-900);
}

img {
  display: block;
  max-width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 24px);
  bottom: clamp(16px, 3vw, 24px);
  z-index: 1100;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: whatsapp-pulse 1.8s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 16px 34px rgba(18, 140, 126, 0.35);
  }
}

body.is-animating .reveal-item,
body.is-animating .hero__logo,
body.is-animating .hero h1,
body.is-animating .hero__visual,
body.is-animating .hero__text,
body.is-animating .hero__cta,
body.is-animating .hero__rule,
body.is-animating .hero__stats {
  opacity: 0;
}

.split-char {
  display: inline-block;
  transform-origin: 50% 58%;
  will-change: transform, color, opacity;
}

.split-space {
  display: inline-block;
  width: 0.32em;
}

/* =========================================================
   Preloader
   Tela inicial enquanto a landing page carrega.
   ========================================================= */

.preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(48, 139, 229, 0.55), rgba(48, 139, 229, 0) 34%),
    linear-gradient(128deg, #287fd1 0%, #102eb0 48%, #060b73 100%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
  z-index: 9999;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__content {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
}

.preloader__content img {
  width: 170px;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.32));
  animation: preloader-logo 1.35s ease-in-out infinite;
}

.preloader__ring {
  position: absolute;
  inset: 10px;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: preloader-spin 1s linear infinite;
}

@keyframes preloader-logo {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   Hero
   Primeira dobra da landing page.
   ========================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 45%, rgba(42, 143, 226, 0.34) 0 22%, rgba(42, 143, 226, 0) 44%),
    linear-gradient(114deg, #287fd1 0%, #1166bd 26%, #092c9b 58%, #070c70 100%);
}

/* Faixa azul escura inclinada no centro, como na imagem de referencia. */
.hero::before {
  content: "";
  position: absolute;
  inset: -16% 47% -16% auto;
  width: 30vw;
  min-width: 300px;
  background: linear-gradient(95deg, rgba(4, 24, 133, 0), rgba(4, 22, 126, 0.5));
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  width: min(78.5vw, 1025px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(30px, 5.4vh, 46px) 0 clamp(24px, 4vh, 34px);
}

.hero__logo {
  position: absolute;
  top: clamp(48px, 8.8vh, 74px);
  left: 49.3%;
  width: clamp(126px, 13vw, 184px);
  transform: translateX(-50%);
  filter: drop-shadow(0 9px 10px rgba(0, 0, 0, 0.34));
  z-index: 3;
}

.hero__copy {
  position: relative;
  z-index: 4;
  width: min(46vw, 520px);
  padding-top: clamp(108px, 14vh, 136px);
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 4.35vw, 58px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
  text-align: left;
}

.hero h1 span {
  color: var(--white);
}

.hero h1 .hero__title-line {
  display: inline-block;
  color: var(--cream);
  white-space: nowrap;
}

.hero h1 .hero__title-line span {
  color: var(--white);
}

.hero__text {
  width: min(31vw, 327px);
  margin: 0 0 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(12px, 1.22vw, 16px);
  line-height: 1.18;
  font-weight: 800;
}

.hero__cta {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #8fc1ff 0%, #4b91df 48%, #2772d5 100%);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    inset 0 -8px 16px rgba(0, 47, 139, 0.24),
    0 8px 20px rgba(0, 42, 128, 0.22);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.hero__cta::before {
  content: "";
  position: absolute;
  inset: -10px -14px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(68, 193, 255, 0.5), rgba(26, 126, 255, 0.22) 38%, rgba(26, 126, 255, 0) 70%);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  z-index: -1;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, #aee0ff 0%, #56b6ff 42%, #1b7dff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 0 -8px 16px rgba(0, 63, 158, 0.2),
    0 0 14px rgba(80, 199, 255, 0.95),
    0 0 34px rgba(25, 129, 255, 0.7),
    0 12px 24px rgba(0, 44, 140, 0.28);
  transform: translateY(-1px);
}

.hero__cta:hover::before,
.hero__cta:focus-visible::before {
  opacity: 1;
  transform: scale(1.04);
  animation: cta-led-pulse 1.25s ease-in-out infinite;
}

.hero__cta:focus-visible {
  outline: 3px solid rgba(159, 226, 255, 0.78);
  outline-offset: 4px;
}

@keyframes cta-led-pulse {
  0%,
  100% {
    filter: blur(0);
    opacity: 0.82;
  }

  50% {
    filter: blur(2px);
    opacity: 1;
  }
}

.hero__cta svg {
  position: relative;
  width: 28px;
  height: 20px;
}

.hero__cta span {
  grid-column: 2;
  text-align: center;
  line-height: 1;
}

.hero__rule {
  position: relative;
  width: min(34vw, 360px);
  height: 3px;
  margin: clamp(36px, 5.9vh, 55px) 0 25px;
  background: linear-gradient(90deg, #1a217d 0 38%, #e8591c 59%, #ffe23a 100%);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero__stats {
  display: flex;
  gap: clamp(34px, 5vw, 64px);
  padding-left: 30px;
}

.stat {
  display: grid;
  gap: 1px;
  font-family: "Montserrat", Arial, sans-serif;
}

.stat strong {
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0;
}

.stat span {
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1;
  font-weight: 900;
}

.hero__visual {
  position: absolute;
  z-index: 2;
  right: max(-4vw, -60px);
  top: 2%;
  width: min(50vw, 600px);
  filter: drop-shadow(0 25px 18px rgba(0, 0, 0, 0.26));
}

/* Desktop com pouca altura util, comum quando o navegador esta em 100% de zoom. */
@media (min-width: 821px) and (max-height: 720px) {
  .hero__inner {
    width: min(80vw, 1080px);
    padding-top: clamp(18px, 3.4vh, 28px);
    padding-bottom: 18px;
  }

  .hero__logo {
    top: clamp(26px, 5vh, 40px);
    width: clamp(106px, 17vh, 132px);
  }

  .hero__copy {
    width: min(44vw, 520px);
    padding-top: clamp(92px, 14.2vh, 112px);
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(35px, 7.4vh, 47px);
    line-height: 0.91;
  }

  .hero__text {
    width: min(31vw, 330px);
    margin-bottom: 12px;
    font-size: clamp(12px, 2.15vh, 15px);
    line-height: 1.1;
  }

  .hero__cta {
    min-height: 36px;
    padding-right: 15px;
    padding-left: 15px;
    font-size: clamp(11px, 1.8vh, 12px);
  }

  .hero__rule {
    width: min(33vw, 365px);
    margin: clamp(22px, 4.3vh, 30px) 0 18px;
  }

  .hero__stats {
    gap: clamp(42px, 6vw, 72px);
  }

  .stat strong {
    font-size: clamp(40px, 8vh, 54px);
  }

  .stat span {
    font-size: clamp(11px, 1.9vh, 13px);
  }

  .hero__visual {
    top: -7%;
    right: max(-1.5vw, -24px);
    width: min(49vw, 102vh, 595px);
  }
}

/* =========================================================
   Responsivo
   Ajustes para tablet e celular.
   ========================================================= */

@media (max-width: 820px) {
  .hero {
    min-height: 760px;
  }

  .hero__inner {
    width: min(88vw, 560px);
    min-height: 760px;
    padding-top: 28px;
  }

  .hero__logo {
    top: 24px;
    left: 50%;
    width: 132px;
  }

  .hero__copy {
    width: min(100%, 430px);
    padding-top: 118px;
  }

  .hero h1 {
    width: 100%;
    margin-bottom: 14px;
    font-size: clamp(31px, 7.6vw, 40px);
    line-height: 0.94;
  }

  .hero__text {
    width: min(100%, 330px);
    margin-bottom: 12px;
    font-size: clamp(11px, 2.8vw, 13px);
    line-height: 1.14;
  }

  .hero__visual {
    top: 365px;
    left: 50%;
    right: auto;
    width: min(96vw, 430px);
    transform: translateX(-50%);
  }

  .hero__rule {
    width: min(100%, 360px);
    margin-top: 24px;
    margin-bottom: 20px;
  }

  .hero__stats {
    width: min(100%, 360px);
    justify-content: space-between;
    gap: 18px;
    padding-left: 0;
  }

  .stat strong {
    font-size: clamp(34px, 9vw, 50px);
  }

  .stat span {
    font-size: clamp(10px, 2.4vw, 12px);
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 720px;
  }

  .hero__inner {
    width: min(90vw, 360px);
    min-height: 720px;
  }

  .hero h1 {
    font-size: clamp(28px, 7.5vw, 32px);
  }

  .hero__visual {
    top: 365px;
    width: min(102vw, 370px);
  }
}

/* =========================================================
   Marcas trabalhadas
   Secao logo abaixo da Hero.
   ========================================================= */

.brands {
  color: #222222;
  background: #f7f7f7;
  font-family: "Montserrat", Arial, sans-serif;
}

.brands__inner {
  width: min(88vw, 980px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 66px) 0 48px;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: #063a9d;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 900;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.brands h2 {
  margin: 0;
  color: #292929;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
}

.brands__intro {
  width: min(90vw, 650px);
  margin: 22px auto 24px;
  color: #222222;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.15;
  font-weight: 900;
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: clamp(54px, 8vw, 105px);
  width: min(82vw, 760px);
  margin: 0 auto 44px;
  align-items: stretch;
}

.brand-card {
  min-height: 318px;
  padding: 22px 22px 24px;
  border-radius: 14px;
  color: var(--white);
  background: #111111;
  text-align: left;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.brand-card img {
  width: min(100%, 300px);
  height: 190px;
  margin: 0 auto 6px;
  object-fit: contain;
  filter: drop-shadow(0 12px 15px rgba(0, 0, 0, 0.36));
}

.brand-card h3 {
  margin: 0 0 11px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1;
  font-weight: 900;
}

.brand-card p {
  margin: 0;
  max-width: 290px;
  font-size: clamp(12px, 1.15vw, 14px);
  line-height: 1.05;
  font-weight: 700;
}

.brands__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(88vw, 310px);
  min-height: 38px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, #2d84d8 0%, #08258f 100%);
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 10px 20px rgba(0, 47, 145, 0.2);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.brands__cta:hover,
.brands__cta:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.36),
    0 0 24px rgba(43, 143, 255, 0.54),
    0 12px 22px rgba(0, 47, 145, 0.24);
  transform: translateY(-1px);
}

.brands__cta:focus-visible {
  outline: 3px solid rgba(24, 120, 255, 0.28);
  outline-offset: 4px;
}

/* Esteira infinita de especialidades. */
.brand-ticker {
  overflow: hidden;
  color: var(--yellow);
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}

.brand-ticker:hover .brand-ticker__track {
  animation-play-state: paused;
}

.brand-ticker__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 100vw;
}

.brand-ticker__group span {
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(22px, 3.8vw, 48px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(18px, 2.05vw, 26px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-ticker__group span + span::before {
  content: "|";
  margin-right: clamp(22px, 3vw, 42px);
  color: var(--yellow);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .brands__inner {
    width: min(90vw, 460px);
    padding-top: 44px;
  }

  .section-eyebrow {
    letter-spacing: 0.32em;
  }

  .brands h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .brands__intro {
    margin-top: 18px;
  }

  .brand-cards {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 330px);
    margin-bottom: 34px;
  }

  .brand-card {
    min-height: 300px;
    padding: 24px 20px;
  }

  .brand-card img {
    height: 180px;
  }

  .brand-ticker__group span {
    min-height: 60px;
  }
}

/* =========================================================
   Sobre a empresa
   Historia, diferenciais e esteira de depoimentos.
   ========================================================= */

.company {
  overflow: hidden;
  color: #090909;
  background: #ffc20f;
  font-family: "Montserrat", Arial, sans-serif;
}

.company__inner {
  width: min(86vw, 1080px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 88px) 0 46px;
}

.company__top {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(330px, 470px);
  align-items: center;
  justify-content: center;
  gap: clamp(42px, 7vw, 96px);
  margin-bottom: clamp(46px, 7vw, 68px);
}

.section-eyebrow--dark {
  color: #101010;
}

.company h2 {
  margin: 0;
  color: #101010;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 900;
}

.company__copy p:last-child {
  width: min(100%, 390px);
  margin: 18px 0 0;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 0.98;
  font-weight: 700;
}

.company__workshop-placeholder {
  display: grid;
  min-height: clamp(220px, 25vw, 292px);
  place-items: center;
  border-radius: 24px;
  color: var(--white);
  background: #050505;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 800;
  text-transform: uppercase;
}

.company__workshop {
  display: block;
  width: 100%;
  min-height: clamp(220px, 25vw, 292px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.company-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 62px);
  margin-bottom: clamp(66px, 9vw, 96px);
}

.company-feature {
  min-height: 195px;
  padding: 25px 28px 24px;
  border-radius: 22px;
  color: var(--white);
  background: #050505;
  text-align: left;
}

.company-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--yellow);
}

.company-feature__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-feature h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1;
  font-weight: 900;
}

.company-feature p {
  margin: 0;
  max-width: 240px;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 0.98;
  font-weight: 700;
}

.testimonials-heading {
  margin-bottom: 34px;
  text-align: center;
}

.testimonials-heading h2 {
  font-size: clamp(30px, 4vw, 47px);
  line-height: 0.86;
}

.testimonial-ticker {
  overflow: hidden;
  padding-bottom: 72px;
}

.testimonial-ticker__track {
  display: flex;
  width: max-content;
  animation: testimonial-scroll 28s linear infinite;
}

.testimonial-ticker:hover .testimonial-ticker__track {
  animation-play-state: paused;
}

.testimonial-ticker__group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
  padding-right: 24px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  width: min(28vw, 335px);
  min-width: 300px;
  min-height: 112px;
  padding: 22px 22px 18px;
  border-radius: 18px;
  color: var(--white);
  background: #050505;
  text-align: left;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #a7a7a7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 0 0 17px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1;
  font-weight: 900;
}

.testimonial-card p {
  margin: 0;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.05;
  font-weight: 700;
}

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .company__inner {
    width: min(90vw, 560px);
  }

  .company__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .company__copy,
  .company h2 {
    text-align: center;
  }

  .company__workshop-placeholder {
    min-height: 230px;
  }

  .company-features {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(100%, 380px);
    margin-right: auto;
    margin-left: auto;
  }

  .company-feature {
    min-height: 164px;
  }

  .testimonial-card {
    width: 320px;
    min-width: 320px;
  }
}

@media (max-width: 460px) {
  .company__inner {
    padding-top: 48px;
  }

  .company h2 {
    font-size: clamp(29px, 10vw, 36px);
  }

  .testimonial-card {
    grid-template-columns: 44px 1fr;
    width: 290px;
    min-width: 290px;
    padding: 18px;
  }

  .testimonial-card__avatar {
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   FAQ
   Cards expansivos para duvidas frequentes.
   ========================================================= */

.faq {
  color: #242424;
  background: #f7f7f7;
  font-family: "Montserrat", Arial, sans-serif;
}

.faq__inner {
  width: min(88vw, 920px);
  margin: 0 auto;
  padding: clamp(66px, 9vw, 104px) 0 clamp(66px, 8vw, 92px);
  text-align: center;
}

.faq h2 {
  margin: 0 0 clamp(28px, 4vw, 40px);
  color: #2a2a2a;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(100%, 780px);
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  background: #050505;
  text-align: left;
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 70px;
  padding: 0 48px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.15;
  font-weight: 700;
  white-space: normal;
}

.faq-item summary > span:first-child {
  min-width: 0;
  width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__arrow {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 20px;
  transition: transform 180ms ease;
}

.faq-item__arrow::before {
  content: "";
  position: absolute;
  inset: 2px 1px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 100% 70%, 84% 100%, 16% 100%, 0 70%);
}

.faq-item[open] .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item p {
  width: min(100%, 620px);
  margin: -4px 48px 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.35;
  font-weight: 600;
}

.faq-item[open] {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(255, 194, 15, 0.55);
  outline-offset: -6px;
}

@media (max-width: 620px) {
  .faq__inner {
    width: min(90vw, 430px);
  }

  .faq h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: auto;
    padding: 16px 22px;
    white-space: normal !important;
  }

  .faq-item summary > span:first-child {
    width: 100%;
    min-width: 0;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .faq-item__arrow {
    justify-self: end;
    margin-top: 0;
  }

  .faq-item p {
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 22px 28px;
    word-break: break-word;
  }
}

/* =========================================================
   CTA final e footer
   Encerramento da landing page.
   ========================================================= */

.final-cta,
.footer {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(93, 86, 255, 0.8), rgba(93, 86, 255, 0) 36%),
    linear-gradient(126deg, #433bff 0%, #171fc9 46%, #060b86 100%);
  font-family: "Montserrat", Arial, sans-serif;
}

.final-cta__inner {
  width: min(88vw, 980px);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 104px) 0 clamp(76px, 10vw, 110px);
  text-align: center;
}

.section-eyebrow--yellow {
  color: var(--yellow);
}

.final-cta h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 900;
}

.final-cta h2::first-line {
  color: var(--white);
}

.final-cta p:not(.section-eyebrow) {
  margin: 22px auto 34px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.3;
  font-weight: 500;
}

.final-cta__button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: min(90vw, 420px);
  min-height: 64px;
  padding: 0 34px;
  border-radius: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, rgba(138, 132, 255, 0.96), rgba(76, 90, 224, 0.96));
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 14px 30px rgba(0, 0, 0, 0.2);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.final-cta__button::before {
  content: "";
  position: absolute;
  inset: -12px -18px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(95, 207, 255, 0.48), rgba(29, 111, 255, 0.2) 42%, rgba(29, 111, 255, 0) 70%);
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: -1;
}

.final-cta__button:hover,
.final-cta__button:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    0 0 26px rgba(91, 205, 255, 0.62),
    0 16px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.final-cta__button:hover::before,
.final-cta__button:focus-visible::before {
  opacity: 1;
}

.final-cta__button svg {
  width: 42px;
  height: 28px;
}

.footer__inner {
  width: min(88vw, 1080px);
  margin: 0 auto;
  padding: 0 0 54px;
}

.footer__divider {
  height: 1px;
  margin-bottom: clamp(54px, 8vw, 78px);
  background: rgba(255, 255, 255, 0.72);
}

.footer__content {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr;
  gap: clamp(46px, 8vw, 96px);
  align-items: start;
  margin-bottom: clamp(64px, 9vw, 88px);
}

.footer__brand img {
  width: 220px;
  margin: -52px 0 -42px -18px;
}

.footer__brand p,
.footer__column p,
.footer__column a,
.footer__bottom a,
.footer__bottom p {
  margin: 0;
  color: var(--white);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.18;
  font-weight: 600;
  text-decoration: none;
}

.footer__brand p {
  max-width: 315px;
  margin-bottom: 18px;
}

.footer__mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  color: #050505;
  background: #efff00;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.footer__mini-cta svg {
  width: 24px;
  height: 16px;
}

.footer__column {
  display: grid;
  gap: 14px;
}

.footer__column h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  text-transform: uppercase;
}

.footer__column a,
.footer__column p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--yellow);
}

.footer__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__instagram {
  position: relative;
  width: 24px;
  height: 24px;
  border: 3px solid #ff3f1e;
  border-radius: 7px;
}

.footer__instagram::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid #ff3f1e;
  border-radius: 50%;
}

.footer__instagram::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ff3f1e;
}

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 1;
  visibility: visible;
}

.footer__bottom p:last-child {
  text-align: right;
}

.footer__bottom strong {
  color: var(--yellow);
  font-weight: 900;
}

.footer__bottom a {
  font-weight: 800;
  text-decoration: none;
}

.footer__bottom a:hover,
.footer__bottom a:focus-visible {
  color: var(--yellow);
}

@media (max-width: 760px) {
  .final-cta h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .final-cta__button {
    min-height: 56px;
    border-radius: 12px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    display: grid;
  }

  .footer__bottom p:last-child {
    text-align: left;
  }
}
