/* ===========================
   DESIGN SYSTEM — Dr. Larry Bezerra
   Paleta: Azul Marinho · Off-White · Dourado
   Mobile-first
   =========================== */

:root {
  --navy: #0d1f3c;
  --navy-mid: #132848;
  --navy-light: #1e3a5f;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --gray-100: #f0eeea;
  --gray-300: #d4cfc7;
  --gray-500: #8a8478;
  --gray-700: #4a4540;
  --text: #1a1814;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .18);
  --transition: .25s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden {
  display: none !important;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.section__tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-light);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
}

.btn--whatsapp:hover {
  background: #1fb556;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .55);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===========================
   HEADER / NAV
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.header.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.nav__logo-img {
  height: 220px;
  width: auto;
  object-fit: contain;
}

.footer__logo-img {
  height: 220px;
  width: auto;
  object-fit: contain;
  margin-top: -48px;
  margin-bottom: -24px;
}

.nav__menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--navy);
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 998;
}

.nav__menu.open {
  display: flex;
}

.nav__link {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link--cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
}

.nav__link--cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

@media(min-width:900px) {
  .nav__menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    gap: 8px;
  }

  .nav__link {
    font-size: .88rem;
  }
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  display: block;
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media(min-width:900px) {
  .nav__toggle {
    display: none;
  }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 168, 76, .08) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy) 0%, #0a1525 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 20px 80px;
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .35);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp .7s ease both;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeUp .7s .15s ease both;
}

.hero__title em {
  color: var(--gold);
  font-style: normal;
}

.hero__br-mobile {
  display: none;
}

@media(max-width:480px) {
  .hero__br-mobile {
    display: block;
  }
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeUp .7s .3s ease both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeUp .7s .45s ease both;
}

.hero__microcopy {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  animation: fadeUp .7s .6s ease both;
}

.hero__switch {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50px;
  padding: 4px;
  gap: 0;
  z-index: 2;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.hero__switch-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  transition: all var(--transition);
}

.hero__switch-btn.active {
  background: var(--gold);
  color: var(--navy);
}

/* ===========================
   TRUST BAR
   =========================== */
.trustbar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201, 168, 76, .2);
  border-bottom: 1px solid rgba(201, 168, 76, .2);
  padding: 20px 0;
}

.trustbar__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
  font-weight: 500;
}

.trustbar__icon {
  font-size: 1rem;
}

/* ===========================
   AREAS
   =========================== */
.areas {
  padding: 96px 0;
  background: var(--off-white);
  text-align: center;
}

.areas__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.areas__tab {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  color: var(--navy);
  transition: all var(--transition);
}

.areas__tab.active {
  background: var(--navy);
  color: var(--white);
}

.areas__tab:hover:not(.active) {
  background: var(--navy);
  color: var(--white);
}

.cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-300);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.card p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.areas__cta {
  margin-top: 48px;
}

/* ===========================
   COMO FUNCIONA — BENTO GRID
   =========================== */
.como {
  padding: 96px 0;
  background: var(--white);
}

.como .section__sub {
  margin-bottom: 56px;
}

/* Grid principal — 5 colunas fluidas */
.bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

/* Posicionamento dos cards */
.bento__card--1 {
  grid-column: 1 / 4;
  grid-row: 1;
}

.bento__card--2 {
  grid-column: 4 / 6;
  grid-row: 1;
}

.bento__card--3 {
  grid-column: 1 / 3;
  grid-row: 2;
}

.bento__card--4 {
  grid-column: 3 / 6;
  grid-row: 2;
}

/* Base de todos os cards */
.bento__card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  transition: transform .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s ease;
}

.bento__card:hover {
  transform: translateY(-4px) scale(1.005);
}

/* ── Variante 1: Branco clean (Card 1) */
.bento__card--white {
  background: var(--white);
  box-shadow:
    8px 8px 24px rgba(175, 165, 148, .35),
    -8px -8px 24px rgba(255, 255, 255, .9);
}

.bento__card--white:hover {
  box-shadow:
    12px 12px 32px rgba(175, 165, 148, .4),
    -6px -6px 18px rgba(255, 255, 255, .95);
}

/* ── Variante 2: Navy escuro (Card 2) */
.bento__card--navy {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  box-shadow:
    6px 6px 18px rgba(5, 12, 25, .55),
    -4px -4px 12px rgba(40, 65, 105, .4);
}

/* ── Variante 3: Off-white neumorfo (Card 3) */
.bento__card--soft {
  background: var(--off-white);
  box-shadow:
    8px 8px 20px rgba(175, 165, 148, .45),
    -8px -8px 20px rgba(255, 255, 255, .9);
}

/* ── Variante 4: Navy com glass overlay (Card 4) */
.bento__card--navy-glass {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0a1a35 100%);
  box-shadow:
    8px 8px 24px rgba(5, 12, 25, .6),
    -4px -4px 12px rgba(30, 58, 95, .4);
}

.bento__card--navy-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, .07) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

/* ── Número do passo */
.bento__num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 168, 76, .25);
  letter-spacing: -.04em;
  position: absolute;
  top: 28px;
  right: 32px;
}

.bento__num--light {
  color: rgba(255, 255, 255, .15);
}

/* ── Ícone */
.bento__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bento__icon-wrap--gold {
  background: linear-gradient(135deg, rgba(201, 168, 76, .18), rgba(201, 168, 76, .06));
  box-shadow:
    3px 3px 8px rgba(175, 165, 148, .4),
    -3px -3px 8px rgba(255, 255, 255, .9);
}

.bento__icon-wrap--glass {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.bento__icon-wrap--soft {
  background: var(--white);
  box-shadow:
    3px 3px 8px rgba(175, 165, 148, .4),
    -3px -3px 8px rgba(255, 255, 255, .95);
}

/* ── Título */
.bento__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-top: 4px;
}

.bento__title--light {
  color: var(--white);
}

/* ── Descrição */
.bento__desc {
  font-size: .93rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}

.bento__desc--light {
  color: rgba(255, 255, 255, .65);
}

/* ── CTA link dentro do card */
.bento__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 10px 20px;
  border-radius: 50px;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(201, 168, 76, .35);
  transition: transform .2s ease, box-shadow .2s ease;
  margin-top: 4px;
}

.bento__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .45);
}

.bento__arrow {
  transition: transform .2s ease;
}

.bento__cta:hover .bento__arrow {
  transform: translateX(4px);
}

/* ── Chips de destaque */
.bento__badge-row {
  margin-top: auto;
}

.bento__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.bento__chip {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.bento__chip--gold {
  background: linear-gradient(135deg, rgba(201, 168, 76, .2), rgba(226, 201, 126, .15));
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .35);
}

.bento__chip--navy {
  background: rgba(13, 31, 60, .08);
  color: var(--navy);
  border: 1px solid rgba(13, 31, 60, .15);
}

.bento__chip--glass {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Decoração de fundo dos cards */
.bento__deco--lines {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(201, 168, 76, .06) 0px,
      rgba(201, 168, 76, .06) 1px,
      transparent 1px,
      transparent 12px);
  border-radius: 50%;
  pointer-events: none;
}

.bento__deco--circle {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Responsivo: tablet (2 colunas) */
@media(max-width: 900px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento__card--1 {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  .bento__card--2 {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .bento__card--3 {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .bento__card--4 {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .bento__card {
    min-height: 280px;
    padding: 32px 28px;
  }
}

/* ── Responsivo: mobile (1 coluna) */
@media(max-width: 580px) {
  .bento {
    grid-template-columns: 1fr;
  }

  .bento__card--1,
  .bento__card--2,
  .bento__card--3,
  .bento__card--4 {
    grid-column: 1;
    grid-row: auto;
  }

  .bento__card {
    min-height: 240px;
    padding: 28px 24px;
  }

  .bento__num {
    font-size: 2.4rem;
  }
}


/* ===========================
   DIFERENCIAIS
   =========================== */
.diferenciais {
  padding: 96px 0;
  background: var(--navy);
}

.diferenciais .section__title {
  color: var(--white);
}

.diferenciais .section__sub {
  color: rgba(255, 255, 255, .6);
}

.dif__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.dif__card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition);
}

.dif__card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(201, 168, 76, .4);
}

.dif__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.dif__card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.dif__card p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
}

/* ===========================
   SOBRE
   =========================== */
.sobre {
  padding: 96px 0;
  background: var(--off-white);
}

.sobre__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

@media(min-width:768px) {
  .sobre__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.sobre__img-wrap {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.sobre__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.sobre__badge-float {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-weight: 700;
}

.sobre__badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--navy);
}

.sobre__desc {
  color: var(--gray-700);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.sobre__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 32px;
}

.sobre__list li {
  font-size: .93rem;
  color: var(--navy);
  font-weight: 500;
}

/* ===========================
   DEPOIMENTOS
   =========================== */
.depoimentos {
  padding: 96px 0;
  background: var(--white);
  text-align: center;
}

.dep__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
  margin-bottom: 32px;
}

.dep__card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
}

.dep__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.dep__card p {
  font-size: .93rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
}

.dep__name {
  font-size: .82rem;
  color: var(--gray-500);
  font-weight: 600;
}

.dep__tag {
  color: var(--gold);
  font-weight: 400;
  font-size: .78rem;
}

.dep__aviso {
  font-size: .8rem;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 12px 20px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 96px 0;
  background: var(--off-white);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item.open {
  border-color: var(--gold);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}

.faq__chevron {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform var(--transition);
  line-height: 1;
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  display: none;
  padding: 0 24px 20px;
}

.faq__item.open .faq__answer {
  display: block;
}

.faq__answer p {
  font-size: .93rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ===========================
   CTA FINAL / CONTATO
   =========================== */
.cta-final {
  padding: 96px 0;
  background: var(--navy);
}

.cta-final__grid {
  display: grid;
  gap: 48px;
}

@media(min-width:860px) {
  .cta-final__grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.cta-final__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-final__sub {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 32px;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media(min-width:560px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .93rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form__group select option {
  background: var(--navy);
  color: var(--white);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.form__privacy {
  font-size: .79rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 4px;
}

/* WhatsApp side */
.cta-final__wpp-inner {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-final__wpp-icon {
  font-size: 3rem;
}

.cta-final__wpp-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
}

.cta-final__wpp-inner p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .6);
  max-width: 280px;
}

.cta-final__contatos {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-final__contatos p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #080f1e;
  padding: 16px 0 48px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.footer__brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.5;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer__links a {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__legal {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
  max-width: 560px;
  line-height: 1.6;
}

.footer__copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
  margin-top: 8px;
}

.footer__copy a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.footer__copy a:hover {
  color: var(--gold);
}

/* ===========================
   WhatsApp Float
   =========================== */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .55);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

/* ===========================
   BARRA DE PROGRESSO DE LEITURA
   =========================== */
#readProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1100;
  transition: width .08s linear;
  box-shadow: 0 0 8px rgba(201, 168, 76, .6);
}

/* ===========================
   SCROLL REVEAL — VARIANTES
   =========================== */

/* Estado inicial de todos os elementos reveal */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity .7s cubic-bezier(.25, .46, .45, .94),
    transform .7s cubic-bezier(.25, .46, .45, .94);
}

/* Variedades de entrada */
.reveal--up {
  transform: translateY(40px);
}

.reveal--left {
  transform: translateX(-48px);
}

.reveal--right {
  transform: translateX(48px);
}

.reveal--fade {
  transform: scale(.96);
}

.reveal--scale {
  transform: scale(.88);
}

/* Estado final (visível) */
.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Durações personalizadas por tipo */
.section__tag.reveal {
  transition-duration: .5s;
}

.section__title.reveal {
  transition-duration: .65s;
}

.section__sub.reveal {
  transition-duration: .65s;
}

.card.reveal {
  transition-duration: .6s;
}

.dif__card.reveal {
  transition-duration: .55s;
}

.step.reveal {
  transition-duration: .65s;
}

.dep__card.reveal {
  transition-duration: .7s;
}

.faq__item.reveal {
  transition-duration: .5s;
}

.trustbar__item.reveal {
  transition-duration: .45s;
}

.sobre__img-wrap.reveal {
  transition-duration: .8s;
}

.sobre__content.reveal {
  transition-duration: .75s;
}

.cta-final__form-wrap.reveal {
  transition-duration: .7s;
}

.cta-final__wpp.reveal {
  transition-duration: .7s;
}

/* ===========================
   LINHA DO TEMPO ANIMADA
   =========================== */
.steps::before {
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(.25, .46, .45, .94);
}

.steps.steps--animate-line::before {
  transform: scaleY(1);
}

/* ===========================
   PARALLAX HERO
   =========================== */
.hero {
  overflow: hidden;
}

.hero__content {
  will-change: opacity, transform;
}

/* ===========================
   GLASSMORPHISM
   =========================== */

/* Nav scrollado — glass azul escuro */
.header.scrolled {
  background: rgba(13, 31, 60, .72) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 2px 32px rgba(0, 0, 0, .28), inset 0 -1px 0 rgba(201, 168, 76, .18);
}

/* Hero badge de especialidades */
.hero__badge {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, .35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 4px 16px rgba(0, 0, 0, .2);
}

/* Hero switch pills */
.hero__switch {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .08);
}

/* Trust bar — vidro escuro */
.trustbar {
  background: rgba(19, 40, 72, .78);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-top: 1px solid rgba(201, 168, 76, .22);
  border-bottom: 1px solid rgba(201, 168, 76, .22);
}

/* Badge flutuante na seção Sobre */
.sobre__badge-float {
  background: linear-gradient(135deg, rgba(201, 168, 76, .92), rgba(226, 201, 126, .88));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow:
    0 12px 40px rgba(201, 168, 76, .35),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* WhatsApp card lateral do CTA */
.cta-final__wpp-inner {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(201, 168, 76, .28);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, .3),
    inset 0 1px 0 rgba(255, 255, 255, .07),
    inset 0 -1px 0 rgba(0, 0, 0, .1);
}

/* WhatsApp float button */
.wpp-float {
  background: rgba(37, 211, 102, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45), inset 0 1px 0 rgba(255, 255, 255, .2);
}

/* ===========================
   NEOMORPHISM — Fundo claro (off-white)
   =========================== */

/* Cards de Áreas */
.card--area {
  background: var(--off-white);
  border: none;
  box-shadow:
    6px 6px 14px rgba(180, 170, 155, .55),
    -6px -6px 14px rgba(255, 255, 255, .85);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.card--area:hover {
  box-shadow:
    3px 3px 8px rgba(180, 170, 155, .5),
    -3px -3px 8px rgba(255, 255, 255, .8);
  transform: translateY(-3px);
  border: none;
}

.card--area .card__icon {
  background: var(--white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow:
    3px 3px 8px rgba(180, 170, 155, .45),
    -3px -3px 8px rgba(255, 255, 255, .9);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* Steps em desktop */
@media(min-width:700px) {
  .step {
    background: var(--off-white);
    border: none;
    box-shadow:
      8px 8px 18px rgba(175, 165, 148, .5),
      -8px -8px 18px rgba(255, 255, 255, .9);
  }

  .step:hover {
    box-shadow:
      4px 4px 12px rgba(175, 165, 148, .45),
      -4px -4px 12px rgba(255, 255, 255, .85);
  }

  .step__num {
    box-shadow:
      4px 4px 10px rgba(0, 0, 0, .25),
      -2px -2px 6px rgba(255, 255, 255, .1);
  }
}

/* FAQ items */
.faq__item {
  background: var(--white);
  border: none;
  box-shadow:
    5px 5px 12px rgba(180, 170, 155, .4),
    -5px -5px 12px rgba(255, 255, 255, .9);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq__item.open {
  box-shadow:
    inset 3px 3px 8px rgba(180, 170, 155, .35),
    inset -3px -3px 8px rgba(255, 255, 255, .85);
  border: none;
}

/* Depoimentos */
.dep__card {
  background: var(--off-white);
  border-left: none;
  border-radius: var(--radius);
  box-shadow:
    6px 6px 14px rgba(175, 165, 148, .45),
    -6px -6px 14px rgba(255, 255, 255, .85);
  position: relative;
  overflow: hidden;
}

.dep__card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  border-radius: 4px 0 0 4px;
}

/* ===========================
   NEOMORPHISM — Fundo escuro (navy)
   =========================== */

/* Diferenciais cards — neumorfismo escuro */
.dif__card {
  background: var(--navy-mid);
  border: none;
  box-shadow:
    5px 5px 14px rgba(5, 12, 25, .65),
    -5px -5px 14px rgba(40, 65, 105, .45);
  transition: box-shadow var(--transition), transform var(--transition);
}

.dif__card:hover {
  box-shadow:
    8px 8px 20px rgba(5, 12, 25, .7),
    -4px -4px 12px rgba(40, 65, 105, .5);
  transform: translateY(-3px);
  border: none;
}

.dif__icon {
  background: rgba(255, 255, 255, .05);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow:
    3px 3px 8px rgba(5, 12, 25, .55),
    -3px -3px 8px rgba(40, 65, 105, .4);
}