/* ============================================================
   TOKENS
   ============================================================ */

:root {
  --black:        #111111;
  --blue:        #0052CC;
  --blue-dark:   #002B77;
  --off-white:    #F4F4F0;
  --gray:         #6B7280;
  --white:        #FFFFFF;

  --gradient-main: linear-gradient(135deg, #0052CC 0%, #002B77 100%);
  --gradient-hero: linear-gradient(180deg, #FFFFFF 0%, #F4F4F0 100%);
  --gradient-soft: linear-gradient(135deg, rgba(0,82,204,.15) 0%, rgba(0,82,204,.03) 100%);

  --radius-card: 12px;
  --radius-pill: 100px;
  --border:      0.5px solid #E5E7EB;

  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,.09);
  --shadow-blue: 0 8px 28px rgba(0,82,204,.28);

  --ease-out: cubic-bezier(.16,1,.3,1);
  --font: 'DM Sans', sans-serif;
}

/* ============================================================
   RESET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) { body { cursor: auto; } }

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */

#cursor {
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .2s, transform .08s linear;
  will-change: transform;
}

#cursor.active { opacity: 1; }

@media (pointer: coarse) { #cursor { display: none; } }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3 { font-weight: 500; line-height: 1.18; }

h1 { font-size: clamp(2rem, 5vw, 3.375rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.625rem); }
h3 { font-size: 1.0625rem; }

p { color: var(--gray); line-height: 1.72; }

.text-blue { color: var(--blue); }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5.625rem 0; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  padding: .75rem 1.75rem;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .2s;
}

.btn--pill { border-radius: var(--radius-pill); }

.btn--blue {
  background: var(--gradient-main);
  color: var(--white);
  border-color: transparent;
}
.btn--blue:hover  { transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn--blue:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.btn--black {
  background: var(--black);
  color: var(--white);
}
.btn--black:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }

.btn--white {
  background: var(--white);
  color: var(--black);
}
.btn--white:hover  { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: #D1D5DB;
}
.btn--outline:hover { transform: translateY(-2px); border-color: var(--blue); box-shadow: var(--shadow-blue); }

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; box-shadow: none; }
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: .625rem;
}

.section-title {
  color: var(--black);
  margin-bottom: .875rem;
}

.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1.0625rem;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.section-sub strong { color: var(--black); font-weight: 500; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  .7s var(--ease-out) var(--delay, 0s),
    transform .7s var(--ease-out) var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAVBAR
   ============================================================ */

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s, border-bottom .3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,.08);
  border-bottom: 0.5px solid #E5E7EB;
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.navbar__wordmark {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 1.875rem;
  margin: 0 auto;
}

.navbar__links a {
  font-size: .9375rem;
  color: var(--gray);
  transition: color .2s;
}

.navbar__links a:hover { color: var(--black); }

.navbar__cta { display: none; margin-left: auto; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .navbar__links { display: flex; }
  .navbar__cta   { display: inline-flex; }
  .hamburger     { display: none; }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
}

.mobile-drawer[hidden] { display: none; }

.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
  animation: fadeIn .25s ease forwards;
}

.mobile-drawer__nav {
  position: relative;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .375rem;
  animation: slideInRight .32s var(--ease-out) forwards;
  overflow-y: auto;
}

.mobile-drawer__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: .375rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: background .2s;
}

.mobile-drawer__close:hover { background: #F3F4F6; }

.mobile-drawer__link {
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--black);
  padding: .875rem 0;
  border-bottom: var(--border);
  transition: color .2s;
}

.mobile-drawer__link:hover { color: var(--blue); }

.mobile-drawer__cta { margin-top: 1.5rem; text-align: center; }

@keyframes fadeIn     { from { opacity: 0; }            to { opacity: 1; } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--gradient-hero);
  padding-top: calc(68px + 4rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__inner { grid-template-columns: 1fr 1fr; }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__content {
    align-items: flex-start;
    text-align: left;
  }
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  padding: .375rem 1rem;
  background: rgba(0,82,204,.1);
  color: var(--blue-dark);
  font-size: .8125rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  width: fit-content;
  border: .5px solid rgba(0,82,204,.25);
}

.hero__headline { color: var(--black); }

.hero__sub {
  font-size: 1.0625rem;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__scroll-link {
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s ease;
}

.hero__scroll-link:hover { border-bottom-color: #0052CC; }

.hero__trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  padding-top: .5rem;
}

@media (min-width: 768px) {
  .hero__trust { align-items: flex-start; }
}

.hero__trust-note {
  font-size: 12px;
  color: #6B7280;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__trust-note { text-align: left; }
}

.hero__trust-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__trust-logos svg {
  height: 20px;
  width: auto;
  color: #6B7280;
  fill: #6B7280;
}

/* ============================================================
   PARTICLES
   ============================================================ */

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,82,204,.08);
  animation: floatParticle 9s ease-in-out infinite;
}

.p1 { width: 88px;  height: 88px;  top: 8%;  left: 4%;   animation-delay: 0s;    animation-duration: 10s; }
.p2 { width: 128px; height: 128px; top: 58%; left: 1%;   animation-delay: 1.4s;  animation-duration: 12s; }
.p3 { width: 64px;  height: 64px;  top: 18%; right: 7%;  animation-delay: .7s;   animation-duration: 8.5s; }
.p4 { width: 104px; height: 104px; top: 72%; right: 4%;  animation-delay: 2.1s;  animation-duration: 13s; }
.p5 { width: 44px;  height: 44px;  top: 38%; left: 13%;  animation-delay: 3.2s;  animation-duration: 7.5s; }
.p6 { width: 76px;  height: 76px;  top: 4%;  right: 18%; animation-delay: 1.1s;  animation-duration: 11s; }
.p7 { width: 52px;  height: 52px;  top: 82%; left: 28%;  animation-delay: 2.6s;  animation-duration: 9.5s; }
.p8 { width: 96px;  height: 96px;  top: 28%; right: 22%; animation-delay: .4s;   animation-duration: 14s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-22px) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) { .particle { animation: none; } }

/* ============================================================
   AGENDA MOCKUP
   ============================================================ */

.hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.agenda-card {
  width: 280px;
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  border: var(--border);
  box-shadow:
    0 32px 80px rgba(0,0,0,.12),
    0 8px 24px rgba(0,0,0,.06);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) { .agenda-card { animation: none; } }

.agenda-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}

.agenda-card__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.agenda-card__badge {
  font-size: .6875rem;
  font-weight: 500;
  color: var(--blue-dark);
  background: rgba(0,82,204,.1);
  padding: .25rem .625rem;
  border-radius: var(--radius-pill);
}

.agenda-card__list {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.agenda-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .625rem .75rem;
  border-radius: 10px;
  background: var(--off-white);
}

.agenda-row__day {
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray);
  width: 26px;
  flex-shrink: 0;
}

.agenda-row__slot {
  font-size: .875rem;
  color: var(--black);
  flex: 1;
}

.agenda-row__status {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #D1D5DB;
  flex-shrink: 0;
}

.agenda-row__status--filled {
  background: var(--blue);
  border-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5l2.3 2.3L8 1' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.agenda-row__status--filling {
  border-color: var(--blue);
  animation: agendaPulse 1.6s ease-in-out infinite;
}

@keyframes agendaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,82,204,.35); }
  50%       { box-shadow: 0 0 0 5px rgba(0,82,204,0); }
}

@media (prefers-reduced-motion: reduce) { .agenda-row__status--filling { animation: none; } }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */

.how-it-works { background: var(--white); padding: 6.875rem 0; }

.how-it-works .container { text-align: center; }
.how-it-works .section-tag,
.how-it-works .section-title { margin-left: auto; margin-right: auto; }

.flow {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 3rem;
  gap: 0;
}

/* Mobile: número à esquerda, conteúdo à direita */
.flow__step {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: .25rem;
  text-align: left;
  width: 100%;
  padding: 1.25rem 0;
  align-items: start;
}

.flow__number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  font-weight: 500;
  font-size: .9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}

.flow__icon {
  display: none;
}

.flow__step h3 {
  color: var(--black);
  margin-bottom: .25rem;
  grid-column: 2;
  grid-row: 1;
}

.flow__step p {
  font-size: 14px;
  line-height: 1.7;
  color: #6B7280;
  grid-column: 2;
  grid-row: 2;
}

.flow__connector {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 21px;
  height: 28px;
}

.flow__connector .flow__line {
  transform: rotate(90deg);
  transform-origin: left center;
}

/* Animated dashes */
.flow__line line {
  stroke-dashoffset: 60;
  animation: moveDash 1.8s linear infinite;
}

@keyframes moveDash {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) { .flow__line line { animation: none; } }

@media (min-width: 768px) {
  .flow {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .flow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    padding: 1.25rem;
    flex: 1;
  }

  .flow__number {
    grid-column: unset;
    grid-row: unset;
    align-self: unset;
    margin-bottom: .75rem;
  }

  .flow__icon {
    display: block;
    margin-bottom: .75rem;
  }

  .flow__step h3 {
    grid-column: unset;
    grid-row: unset;
    margin-bottom: .375rem;
  }

  .flow__step p {
    min-height: 2.8em;
  }

  .flow__connector {
    transform: none;
    padding: 0;
    margin-top: 1.75rem;
    flex-shrink: 0;
    height: auto;
    justify-content: center;
  }

  .flow__connector .flow__line {
    transform: none;
  }
}

/* ============================================================
   PLANOS
   ============================================================ */

.plans { background: var(--white); }

.plans__note {
  font-size: .875rem;
  color: var(--gray);
  margin-top: -.5rem;
  margin-bottom: 2rem;
}

.plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .plans__grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

.plans__grid--two {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .plans__grid--two { grid-template-columns: repeat(2, 1fr); }
}

.plan-card {
  border-radius: var(--radius-card);
  padding: 2rem;
  border: var(--border);
  background: var(--white);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  position: relative;
}

.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan-card--featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-blue);
}

.plan-card--featured:hover { box-shadow: 0 12px 36px rgba(0,82,204,.35); }

.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: .6875rem;
  font-weight: 500;
  padding: .3rem .875rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: .03em;
}

.plan-card__header { margin-bottom: 1.5rem; }

.plan-card h3 { color: var(--black); margin-bottom: .5rem; }

.plan-card__desc {
  font-size: .9375rem;
  line-height: 1.6;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.75rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  line-height: 1.5;
}

.feature::before {
  content: '';
  width: 17px;
  height: 17px;
  margin-top: .1875rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature--in { color: var(--black); }

.feature--in::before {
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='9' viewBox='0 0 11 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.5l3 3 5-6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.feature--out {
  color: var(--gray);
  text-decoration: line-through;
  opacity: .55;
}

.feature--out::before { background: #E5E7EB; }

.plan-card__cta { width: 100%; }

/* ============================================================
   ADD-ONS
   ============================================================ */

.addons { background: #F9F9F7; }

.addons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .875rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .addons__grid { grid-template-columns: repeat(3, 1fr); }
}

.addon-card {
  display: flex;
  align-items: center;
  gap: .875rem;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.125rem 1.25rem;
  border: var(--border);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .25s;
}

.addon-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.addon-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,82,204,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-card span {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
}

/* ============================================================
   PROVA SOCIAL (placeholder)
   ============================================================ */

.social-proof-soon {
  background: var(--black);
  padding: 4.5rem 0;
}

.social-proof-soon__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .875rem;
  max-width: 560px;
  margin: 0 auto;
}

.social-proof-soon h2 {
  color: var(--white);
}

.social-proof-soon p {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
}

/* ============================================================
   BLOCO DE CONFIANÇA
   ============================================================ */

.trust-block {
  background: var(--off-white);
  padding: 3.5rem 0;
}

.trust-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 620px;
}

.trust-block__text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq { background: var(--white); }

.faq__list {
  max-width: 720px;
  margin-top: 2.5rem;
}

.faq__item {
  border-bottom: 0.5px solid #E5E7EB;
  padding: 20px 0;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  transition: color .2s;
}

.faq__item.open .faq__question { color: var(--blue); }

.faq__icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .35s var(--ease-out);
  user-select: none;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease;
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: .9375rem;
}

.faq__item.open .faq__answer { max-height: 400px; }

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final {
  background: var(--gradient-main);
  padding: 6.5rem 0;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.cta-final h2 { color: #fff; }

.cta-final p {
  color: rgba(255,255,255,.88);
  font-size: 1.0625rem;
  max-width: 500px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--black);
  padding: 3.5rem 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer__inner { grid-template-columns: repeat(3, 1fr); }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: .75rem;
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(0,82,204,.2);
  margin: 24px 0;
}

.footer__copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__col--contact { gap: .5rem; }

.footer__link {
  font-size: .9375rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}

.footer__link:hover { color: var(--white); }

/* ============================================================
   FOCUS VISIBLE (global)
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
