/* ══════════════════════════════════════════════════════
   OGGI LEILÕES — Design System & Styles
   ══════════════════════════════════════════════════════ */

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

:root {
  --verde: #0D5257;
  --verde-escuro: #082E32;
  --verde-profundo: #061D20;
  --dourado: #BC8C3D;
  --dourado-claro: #D4A85A;
  --dourado-glow: rgba(188, 140, 61, .15);
  --off-white: #F7F4EF;
  --creme: #EDE8E0;
  --preto: #1A1612;
  --fonte-display: 'Figtree', sans-serif;
  --fonte-corpo: 'Outfit', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .18);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--verde-escuro);
  color: var(--off-white);
  font-family: var(--fonte-corpo);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--verde-escuro);
}

::-webkit-scrollbar-thumb {
  background: var(--dourado);
  border-radius: 3px;
}

/* ══════════════════ SHARED UTILITIES ══════════════════ */

.section-tag {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--dourado);
}

.section-tag.center {
  justify-content: center;
}

.section-tag.dark {
  color: var(--dourado);
}

.section-h2 {
  font-family: var(--fonte-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--preto);
  margin-bottom: 20px;
}

.section-h2 em {
  font-style: normal;
  color: var(--verde);
}

.section-h2.dark {
  color: #fff;
}

.section-h2.dark em,
.section-h2 em.gold {
  color: var(--dourado);
}

.section-h2.center {
  text-align: center;
}

.section-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(26, 22, 18, .65);
  max-width: 560px;
  margin-bottom: 48px;
}

.section-lead.dark {
  color: rgba(247, 244, 239, .55);
}

/* ══════════════════ NAV ══════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 64px;
  background: var(--verde);
  border-bottom: 1px solid rgba(188, 140, 61, .2);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  height: 56px;
  background: var(--verde-escuro);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .15);
}

/* Logo container — caixa que sobresai do header */
.logo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  background: var(--off-white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  height: 90px;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  transition: height var(--transition), padding var(--transition), background var(--transition), box-shadow var(--transition), border-radius var(--transition);
}

/* Logo default = versão colorida (dentro da caixa branca) */
.logo-nav .logo-default {
  height: 52px;
  transition: height var(--transition), opacity var(--transition);
}

/* Logo scrolled = versão off-white (quando header scrolled) */
.logo-nav .logo-scrolled {
  height: 52px;
  position: absolute;
  opacity: 0;
  transition: height var(--transition), opacity var(--transition);
}

/* Ao rolar, logo volta ao fluxo normal do header */
nav.scrolled .logo-nav {
  background: transparent;
  height: auto;
  padding: 0;
  box-shadow: none;
  align-self: center;
  border-radius: 0;
}

nav.scrolled .logo-nav .logo-default {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

nav.scrolled .logo-nav .logo-scrolled {
  height: 36px;
  opacity: 1;
  position: static;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--fonte-corpo);
  font-size: .95rem;
  font-weight: 600;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: .04em;
  position: relative;
  transition: color var(--transition);
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dourado);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--dourado);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--dourado);
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dourado);
  color: var(--preto);
  font-family: var(--fonte-corpo);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform .2s, box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(188, 140, 61, .25);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--dourado-claro);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(188, 140, 61, .3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 300;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 46, 50, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transform: translateY(20px);
  transition: transform .4s ease;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-link {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--off-white);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: .02em;
}

.mobile-link:hover {
  color: var(--dourado);
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dourado);
  color: var(--preto);
  font-family: var(--fonte-corpo);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  margin-top: 16px;
  transition: background var(--transition);
}

.mobile-cta:hover {
  background: var(--dourado-claro);
}

/* ══════════════════ HERO ══════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 6vw 80px;
  overflow: hidden;
}

/* Background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  z-index: 0;
}


/* Overlay: gradiente verde da marca no lado esquerdo para legibilidade */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(13, 82, 87, .88) 0%,
      rgba(13, 82, 87, .75) 25%,
      rgba(13, 82, 87, .45) 50%,
      rgba(13, 82, 87, .12) 68%,
      transparent 85%);
}

/* Sutil borda dourada no topo */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), transparent 60%);
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 540px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fonte-corpo);
  font-size: .80rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--dourado);
}

.hero-h1 {
  font-family: var(--fonte-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .15);
}

.hero-h1 em {
  font-style: normal;
  color: var(--dourado);
}

.hero-subtitle {
  font-family: var(--fonte-display);
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(247, 244, 239, .7);
  letter-spacing: .01em;
  margin-bottom: 28px;
  line-height: 1.4;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--dourado), transparent);
  margin-bottom: 28px;
}

.hero-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(247, 244, 239, .72);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dourado);
  color: var(--preto);
  font-family: var(--fonte-corpo);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), transform .2s, box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(188, 140, 61, .25);
}

.btn-primary:hover {
  background: var(--dourado-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(188, 140, 61, .35);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-secondary {
  font-family: var(--fonte-corpo);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, .55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.btn-secondary:hover {
  color: var(--off-white);
}

.btn-secondary::after {
  content: '↓';
  font-size: .9rem;
  transition: transform var(--transition);
}

.btn-secondary:hover::after {
  transform: translateY(3px);
}

/* Hero badge — glass card no canto inferior direito */
.hero-badge {
  position: absolute;
  bottom: 36px;
  right: 6vw;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(6, 29, 32, .7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(188, 140, 61, .25);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
}

.hero-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge-num {
  font-family: var(--fonte-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--dourado);
  line-height: 1;
}

.hero-badge-label {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, .5);
  margin-top: 3px;
  line-height: 1.3;
}

.hero-badge-sep {
  width: 1px;
  height: 28px;
  background: rgba(247, 244, 239, .12);
}

/* ══════════════════ SOCIAL PROOF ══════════════════ */
#social-proof {
  background: var(--verde);
  padding: 40px 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
}

#social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro), var(--dourado));
}

.proof-item {
  text-align: center;
  padding: 8px 0;
}

.proof-num {
  font-family: var(--fonte-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--dourado);
  line-height: 1;
}

.proof-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, .55);
  margin-top: 6px;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(247, 244, 239, .12);
}

/* ══════════════════ PAIN / DOR ══════════════════ */
#dor {
  background: var(--off-white);
  color: var(--preto);
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
}

.dor-header {
  margin-bottom: 56px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pain-card {
  background: #fff;
  border: 1px solid rgba(13, 82, 87, .08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.pain-card:hover::before {
  opacity: 1;
}

.pain-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde), var(--verde-escuro));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pain-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--dourado);
}

.pain-title {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--preto);
  margin-bottom: 10px;
}

.pain-body {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(26, 22, 18, .6);
}

/* ══════════════════ COMO FUNCIONA (TIMELINE) ══════════════════ */
#como-funciona {
  background: var(--verde-escuro);
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
}

.cf-header {
  margin-bottom: 64px;
}

/* ── Desktop: layout horizontal ── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Linha horizontal que conecta os passos */
.timeline-line {
  position: absolute;
  top: 29px;
  left: 29px;
  right: 29px;
  height: 2px;
  width: auto;
  background: linear-gradient(90deg, var(--dourado), rgba(188, 140, 61, .15));
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.step-marker {
  position: relative;
  left: auto;
  top: auto;
  margin-bottom: 24px;
}

.step-num {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(188, 140, 61, .4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--dourado);
  background: var(--verde-escuro);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.timeline-step:hover .step-num {
  background: var(--dourado);
  color: var(--preto);
  border-color: var(--dourado);
  box-shadow: 0 0 24px rgba(188, 140, 61, .3);
}

.step-content {
  padding-top: 0;
}

.step-title {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 8px;
}

.step-body {
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(247, 244, 239, .55);
}

/* ══════════════════ SERVIÇOS ══════════════════ */
#servicos {
  background: var(--off-white);
  padding: 100px 6vw;
}

.servicos-header {
  margin-bottom: 48px;
}

.servicos-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.servico-principal {
  background: linear-gradient(160deg, var(--verde) 0%, var(--verde-escuro) 100%);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.servico-principal::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(188, 140, 61, .15);
}

.servico-principal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-claro), transparent);
}

.sp-label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 20px;
  position: relative;
}

.sp-title {
  font-family: var(--fonte-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}

.sp-price {
  font-family: var(--fonte-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
}

.sp-price-note {
  font-size: .78rem;
  color: rgba(247, 244, 239, .45);
  margin-bottom: 28px;
  position: relative;
}

.sp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  position: relative;
}

.sp-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  line-height: 1.5;
  color: rgba(247, 244, 239, .85);
}

.sp-list li .check {
  color: var(--dourado);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.sp-btn {
  display: block;
  width: 100%;
  background: var(--dourado);
  color: var(--preto);
  font-family: var(--fonte-corpo);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  transition: background var(--transition), transform .2s, box-shadow var(--transition);
  position: relative;
  margin-bottom: 20px;
}

.sp-btn:hover {
  background: var(--dourado-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(188, 140, 61, .3);
}

.sp-honorario {
  background: rgba(8, 46, 50, .5);
  border: 1px solid rgba(188, 140, 61, .2);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: .82rem;
  color: rgba(247, 244, 239, .7);
  line-height: 1.55;
  position: relative;
}

.sp-honorario strong {
  color: var(--dourado);
}

.outros-servicos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outros-header {
  margin-bottom: 8px;
}

.servico-card {
  background: #fff;
  border: 1px solid rgba(13, 82, 87, .08);
  border-radius: var(--radius-lg);
  padding: 24px 24px 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.servico-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(188, 140, 61, .25);
}

.sc-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 82, 87, .1), rgba(13, 82, 87, .05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--verde);
}

.sc-title {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--preto);
  margin-bottom: 4px;
}

.sc-body {
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(26, 22, 18, .6);
}

/* ══════════════════ SOBRE ══════════════════ */
#sobre {
  background: var(--verde-escuro);
  padding: 100px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-frame {
  background: var(--verde);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 140, 61, .15);
  box-shadow: var(--shadow-lg);
}

.sobre-frame-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(188, 140, 61, .15) 0%, transparent 60%);
}

.sobre-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.sobre-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--dourado);
  color: var(--preto);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
}

.sobre-badge-num {
  font-family: var(--fonte-display);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
}

.sobre-badge-label {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 2px;
}

.sobre-content {
  color: var(--off-white);
}

.sobre-q {
  font-family: var(--fonte-display);
  font-weight: 300;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(247, 244, 239, .55);
  border-left: 2px solid var(--dourado);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.65;
}

.sobre-body {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(247, 244, 239, .65);
  margin-bottom: 16px;
}

.sobre-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.cred-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: .85rem;
  color: rgba(247, 244, 239, .55);
}

.cred-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--dourado);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════ FAQ ══════════════════ */
#faq {
  background: var(--off-white);
  padding: 100px 6vw;
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(13, 82, 87, .08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(188, 140, 61, .2);
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(188, 140, 61, .25);
}

.faq-q {
  padding: 22px 28px;
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--preto);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
  user-select: none;
}

.faq-q:hover {
  background: rgba(13, 82, 87, .03);
}

.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 82, 87, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--verde);
  transition: color var(--transition);
}

.faq-item.open .faq-q {
  color: var(--verde-escuro);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--dourado);
}

.faq-item.open .faq-arrow svg {
  color: var(--preto);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 28px;
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(26, 22, 18, .65);
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 28px 24px;
}

/* ══════════════════ CTA FINAL ══════════════════ */
#cta {
  background: var(--verde);
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(188, 140, 61, .1);
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--dourado);
}

.cta-h2 {
  font-family: var(--fonte-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-h2 em {
  font-style: normal;
  color: var(--dourado);
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(247, 244, 239, .6);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  font-family: var(--fonte-corpo);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: filter .25s, transform .2s, box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(37, 211, 102, .3);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #fff;
}

.btn-whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(247, 244, 239, .25);
  color: rgba(247, 244, 239, .75);
  font-family: var(--fonte-corpo);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), transform .2s;
}

.btn-outline:hover {
  border-color: var(--dourado);
  color: var(--dourado);
  transform: translateY(-2px);
}

.cta-guarantee {
  margin-top: 28px;
  font-size: .78rem;
  color: rgba(247, 244, 239, .35);
  letter-spacing: .05em;
}

.cta-photo {
  position: relative;
}

.cta-img {
  width: 333px;
  height: 333px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  border: 3px solid rgba(188, 140, 61, .3);
  box-shadow: var(--shadow-lg);
}

/* ══════════════════ FOOTER ══════════════════ */
footer {
  background: var(--verde-profundo);
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding: 60px 6vw 48px;
  border-bottom: 1px solid rgba(247, 244, 239, .06);
}

.footer-brand {
  max-width: 340px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(247, 244, 239, .4);
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: .85rem;
  color: rgba(247, 244, 239, .45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--dourado);
}

.footer-bottom {
  padding: 24px 6vw;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(247, 244, 239, .25);
  text-align: center;
}

/* ══════════════════ FLOAT WA BUTTON ══════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.float-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .4);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .6
  }

  50% {
    transform: scale(1.2);
    opacity: 0
  }
}

/* ══════════════════ ANIMATIONS ══════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: .1s;
}

.fade-up:nth-child(3) {
  transition-delay: .2s;
}

.fade-up:nth-child(4) {
  transition-delay: .3s;
}

/* ══════════════════ RESPONSIVE ══════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-label {
    justify-content: center;
  }

  .cta-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-photo {
    display: flex;
    justify-content: center;
    order: -1;
  }
}

@media (max-width: 900px) {
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(13, 82, 87, .92) 0%,
        rgba(13, 82, 87, .8) 40%,
        rgba(13, 82, 87, .55) 65%,
        rgba(13, 82, 87, .3) 85%,
        rgba(13, 82, 87, .1) 95%);
  }


  .hero-bg-img {
    object-position: center 20%;
  }

  .hero-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 40px;
    justify-content: center;
  }

  .servicos-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  #sobre {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-frame {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav {
    height: 56px;
    padding: 0 5vw;
  }

  .logo-nav {
    height: 72px;
    padding: 8px 14px;
  }

  .logo-nav .logo-default {
    height: 40px;
  }

  .logo-nav .logo-scrolled {
    height: 40px;
  }

  nav.scrolled .logo-nav .logo-scrolled {
    height: 32px;
  }

  #hero {
    padding: 80px 5vw 100px;
    min-height: 100vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(13, 82, 87, .93) 0%,
        rgba(13, 82, 87, .82) 35%,
        rgba(13, 82, 87, .6) 60%,
        rgba(13, 82, 87, .35) 82%,
        rgba(13, 82, 87, .15) 95%);
  }


  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero-body {
    font-size: .92rem;
    margin-bottom: 32px;
  }

  .hero-badge {
    position: absolute;
    bottom: 20px;
    left: 5vw;
    right: 5vw;
    justify-content: center;
    padding: 14px 20px;
    gap: 16px;
  }

  .hero-badge-num {
    font-size: 1rem;
  }

  .hero-badge-label {
    font-size: .58rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  #social-proof {
    gap: 24px;
    padding: 32px 5vw;
  }

  .proof-divider {
    display: none;
  }

  .proof-item {
    flex: 1;
    min-width: 120px;
  }

  #dor,
  #como-funciona,
  #servicos,
  #faq,
  #cta {
    padding: 72px 5vw;
  }

  #sobre {
    padding: 72px 5vw;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pain-card {
    padding: 28px 24px;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    padding-left: 64px;
    max-width: 100%;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--dourado), rgba(188, 140, 61, .15));
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 40px 0;
    gap: 20px;
  }

  .timeline-step:last-child {
    padding-bottom: 0;
  }

  .step-marker {
    position: absolute;
    left: -64px;
    top: 0;
    margin-bottom: 0;
  }

  .step-num {
    width: 46px;
    height: 46px;
    font-size: .95rem;
  }

  .servico-principal {
    padding: 36px 28px;
  }

  .sp-price {
    font-size: 2.2rem;
  }

  .sobre-frame {
    aspect-ratio: 3/4;
    max-width: 300px;
  }

  .faq-q {
    padding: 18px 20px;
    font-size: .88rem;
  }

  .faq-a {
    padding: 0 20px;
  }

  .faq-item.open .faq-a {
    padding: 0 20px 20px;
  }

  .cta-img {
    width: 220px;
    height: 220px;
  }

  .footer-nav {
    gap: 40px;
  }

  .float-wa {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .float-wa svg {
    width: 24px;
    height: 24px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-h1 {
    font-size: 1.7rem;
  }

  .hero-badge {
    gap: 12px;
    padding: 12px 16px;
  }

  .hero-badge-sep {
    height: 22px;
  }

  .proof-num {
    font-size: 1.4rem;
  }

  .proof-label {
    font-size: .65rem;
  }

  #social-proof {
    gap: 16px;
  }

  .proof-item {
    min-width: 70px;
  }

  .section-h2 {
    font-size: 1.5rem;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .footer-col {
    align-items: center;
    text-align: center;
  }
}