/* ============================================================
   DRA. SANDRA ARAÚJO — Landing Page v3
   Paleta Luxury Green & Gold
     Forest Green  #1B4332
     Dark Green    #0F2D1F
     Mid Green     #2D6A4F
     Gold          #C9A96E
     Gold Dark     #A8884A
     Cream         #FAF7F2
     Slate         #4A5548
     Noir          #0D1F17
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Verdes */
  --forest:       #1B4332;
  --forest-dark:  #0F2D1F;
  --forest-mid:   #2D6A4F;
  --forest-light: #E8F0EB;
  --forest-xlight:#F2F7F4;

  /* Dourado */
  --gold:         #C9A96E;
  --gold-dark:    #A8884A;
  --gold-deeper:  #8A6D35;
  --gold-light:   #F5EDD8;
  --gold-xlight:  #FAF7F0;

  /* Degradê dourado metalizado — linha única para compatibilidade cross-browser */
  --gold-gradient: linear-gradient(135deg, #F0D878 0%, #C9A030 25%, #E8C060 45%, #8B6514 65%, #C9A030 80%, #F0D060 100%);
  --gold-gradient-h: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);

  /* Neutros */
  --cream:        #FAF7F2;
  --cream-mid:    #F0EAE0;
  --slate:        #4A5548;
  --slate-light:  #7A8A7A;
  --noir:         #0D1F17;
  --white:        #FFFFFF;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;

  --shadow-sm:    0 2px 8px rgba(13,31,23,.06);
  --shadow-md:    0 8px 32px rgba(13,31,23,.12);
  --shadow-lg:    0 24px 64px rgba(13,31,23,.18);
  --shadow-gold:  0 8px 28px rgba(201,169,110,.35);

  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --max-width:    1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--noir);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TIPOGRAFIA ---------- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--forest-dark);
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  border: none;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, #F0D878 0%, #C9A030 25%, #E8C060 45%, #8B6514 65%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc { font-size: 17px; color: var(--slate); max-width: 600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  padding: 14px 28px;
  letter-spacing: .02em;
}

.btn--primary {
  background: var(--gold);
  color: var(--forest-dark);
  border: none;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: var(--forest-dark);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--forest-dark);
  border-color: var(--white);
}
.btn--white:hover, .btn--white:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn--sm  { padding: 10px 20px; font-size: 14px; }
.btn--lg  { padding: 18px 40px; font-size: 16px; }

/* ---------- BADGE ---------- */
.badge {
  display: inline-block;
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  color: var(--forest-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ============================================================
   HEADER  — fundo verde escuro, letras dourado e branco
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--forest-dark);
  border-bottom: 1px solid rgba(201,169,110,.2);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(13,31,23,.5); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__logo img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: brightness(1.3);
}
.header__name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.header__logo:hover .header__name { opacity: .8; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

/* Botão do header sobre fundo escuro */
.header__nav .btn--primary {
  background: var(--gold);
  color: var(--forest-dark);
  border: none;
  font-weight: 700;
}
.header__nav .btn--primary:hover {
  background: var(--white);
  color: var(--forest-dark);
  box-shadow: 0 4px 16px rgba(201,169,110,.35);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--noir);
  border-top: 1px solid rgba(201,169,110,.2);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav__link {
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(201,169,110,.1);
  padding: 12px 0;
  font-size: 16px;
}
.mobile-menu .nav__link:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(150deg, var(--forest-dark) 0%, var(--forest) 55%, #254D3A 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
/* Ornamento dourado de fundo */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,169,110,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, #F0D878 0%, #C9A030 25%, #E8C060 45%, #8B6514 65%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.8;
}

.hero__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__credentials span {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.3);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__tag {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 100px;
}

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

/* Hero Image */
.hero__img-wrapper {
  position: relative;
  display: inline-block;
}
.hero__img-wrapper img {
  width: 100%;
  max-width: 480px;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(201,169,110,.25);
}

.hero__badge-float {
  position: absolute;
  background: var(--forest-dark);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: float 3s ease-in-out infinite;
  border-left: 4px solid var(--gold);
}
.hero__badge-float strong {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__badge-float span   { font-size: 11px; color: rgba(255,255,255,.65); font-weight: 500; }
.hero__badge-float--1 { bottom: 120px; left: -40px; animation-delay: 0s; }
.hero__badge-float--2 { top: 60px; right: -30px; animation-delay: 1.5s; }

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

.hero__wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  background: var(--white);
  padding: 48px 0;
  border-bottom: 1px solid rgba(201,169,110,.15);
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
}
.strip__item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  font-family: var(--font-serif);
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.strip__item span { font-size: 12px; color: var(--slate); margin-top: 2px; }
.strip__divider { width: 1px; height: 48px; background: rgba(201,169,110,.2); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 100px 0; background: var(--cream); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__images { position: relative; height: 540px; }
.about__img-main { position: absolute; top: 0; left: 0; }
.about__img-main img {
  width: 340px; height: 440px;
  object-fit: cover; object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(201,169,110,.2);
}
.about__img-secondary { position: absolute; bottom: 0; right: 0; }
.about__img-secondary img {
  width: 220px; height: 280px;
  object-fit: cover; object-position: top center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}

.about__content p { color: var(--slate); margin-bottom: 16px; font-size: 16px; }

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 36px;
}
.highlight-item { display: flex; gap: 16px; align-items: flex-start; }
.highlight-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-icon img { width: 28px; height: 28px; object-fit: contain; filter: none; }
.highlight-item strong { font-size: 15px; font-weight: 600; color: var(--forest); display: block; margin-bottom: 4px; }
.highlight-item p { font-size: 14px; color: var(--slate); margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 100px 0; background: var(--white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.services__grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(201,169,110,.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: linear-gradient(160deg, var(--forest-xlight) 0%, var(--gold-xlight) 100%);
  border-color: rgba(201,169,110,.3);
}

.service-card__icon {
  margin-bottom: 20px;
  width: 60px; height: 60px;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon img { width: 34px; height: 34px; object-fit: contain; filter: none; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
}

.services__cta { text-align: center; }
.services__cta p { font-size: 18px; color: var(--slate); margin-bottom: 20px; }

/* ============================================================
   PROCESS  — fundo verde escuro com dourado
   ============================================================ */
.process { padding: 100px 0; background: var(--forest-dark); }

.process .section-label {
  background: rgba(201,169,110,.15);
  color: var(--gold);
  border-color: rgba(201,169,110,.3);
}
.process .section-title { color: var(--white); }
.process .section-title em {
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.process .section-desc { color: rgba(255,255,255,.6); }

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process__step { flex: 1; text-align: center; padding: 0 24px; }
.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  background: linear-gradient(135deg, #F0D878 0%, #C9A030 25%, #E8C060 45%, #8B6514 65%, #C9A030 80%, #F0D060 100%);
  color: var(--forest-dark);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(201,169,110,.4);
}
.process__step h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.process__step p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.75; }

.process__connector {
  flex-shrink: 0;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, rgba(201,169,110,.3), rgba(201,169,110,.6));
  margin-top: 34px;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 10px; height: 10px;
  border-top: 2px solid rgba(201,169,110,.6);
  border-right: 2px solid rgba(201,169,110,.6);
  transform: rotate(45deg);
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-points { padding: 100px 0; background: var(--cream); }

.pain-points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid rgba(201,169,110,.15);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pain-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pain-card:hover::after { transform: scaleX(1); }

.pain-card__icon {
  margin-bottom: 20px;
  width: 60px; height: 60px;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-card__icon img { width: 34px; height: 34px; object-fit: contain; filter: none; }

.pain-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}
.pain-card p { font-size: 15px; color: var(--slate); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201,169,110,.2);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: rgba(201,169,110,.15);
  pointer-events: none;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-card__stars {
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonial-card blockquote p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(201,169,110,.2);
  padding-top: 20px;
  margin-top: auto;
}
.testimonial-card__author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.testimonial-card__author strong { display: block; font-size: 15px; font-weight: 600; color: var(--forest); }
.testimonial-card__author span   { font-size: 13px; color: var(--slate-light); }

/* Disclaimer */
.disclaimer-text {
  font-size: 13px !important;
  color: var(--slate) !important;
  font-style: italic;
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  background: var(--gold-xlight);
  display: inline-block;
  margin-top: 8px;
  max-width: 680px;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.google-reviews { padding: 80px 0; background: var(--cream); }

/* ============================================================
   FAQ + MAPA
   ============================================================ */
.faq { padding: 100px 0; background: var(--white); }

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

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

.faq__item {
  background: var(--cream);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer {
  padding: 0 20px 18px;
  border-top: 1px solid rgba(201,169,110,.2);
  animation: slideDown .3s ease;
}
.faq__answer p { font-size: 14px; color: var(--slate); line-height: 1.8; padding-top: 14px; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mapa */
.faq__map { display: flex; flex-direction: column; gap: 16px; }
.faq__map-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
}
.faq__map-desc { font-size: 14px; color: var(--slate); line-height: 1.6; }
.faq__map iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 0;
}
.faq__map-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq__map-info p { font-size: 14px; color: var(--slate); }

.faq__contact { text-align: center; margin-top: 60px; }
.faq__contact p { font-size: 17px; color: var(--slate); margin-bottom: 20px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,169,110,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,169,110,.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-final__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-final__title em {
  font-style: italic;
  background: linear-gradient(135deg, #F0D878 0%, #C9A030 25%, #E8C060 45%, #8B6514 65%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-final__content > p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 520px;
}
.cta-final__note {
  font-size: 13px !important;
  color: rgba(255,255,255,.45) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}
.cta-final__image img {
  width: 320px; height: 400px;
  object-fit: cover; object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(201,169,110,.3);
}

/* ============================================================
   FOOTER  — verde escuro com dourado e branco
   ============================================================ */
.footer { background: var(--forest-dark); color: rgba(255,255,255,.7); }

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  padding: 72px 24px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer__logos img {
  width: 56px; height: 56px;
  object-fit: contain;
}

.footer__logos img:first-child {
  filter: brightness(1.3);
}

.footer__seal {
  border-radius: 6px;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.footer__sub {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer__socials { display: flex; gap: 12px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.2);
  color: rgba(255,255,255,.65);
  transition: all var(--transition);
}
.social-link:hover { background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%); border-color: transparent; color: var(--forest-dark); transform: translateY(-3px); }

.footer__links h3,
.footer__contact h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: linear-gradient(90deg, #F0D878 0%, #C9A030 30%, #8B6514 60%, #C9A030 80%, #F0D060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }

.footer__contact p { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 6px; }

.footer__social-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
}
.footer__social-row a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer__social-row a:hover { color: var(--gold); }
.footer__social-row span { color: rgba(255,255,255,.2); }

.footer__bottom {
  border-top: 1px solid rgba(201,169,110,.1);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos][data-aos-delay="300"] { transition-delay: .3s; }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }

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

  .hero__inner  { gap: 40px; }
  .about__inner { gap: 48px; }

  .faq__layout { grid-template-columns: 1fr; }
  .faq__map iframe { height: 360px; }

  .process__steps { flex-direction: column; gap: 0; align-items: center; }
  .process__step  { width: 100%; max-width: 420px; padding: 0 0 32px; }
  .process__connector {
    width: 2px; height: 40px; margin: 0;
  }
  .process__connector::after {
    right: -4px; top: auto; bottom: -5px;
    border-top: none; border-right: none;
    border-bottom: 2px solid rgba(201,169,110,.5);
    border-left: 2px solid rgba(201,169,110,.5);
    transform: rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__credentials, .hero__tags, .hero__actions { justify-content: center; }
  .hero__subtitle { margin: 0 auto 24px; }
  .hero__img-wrapper img { max-width: 100%; height: 420px; margin: 0 auto; }
  .hero__badge-float--1 { left: 0; bottom: 80px; }
  .hero__badge-float--2 { right: 0; top: 20px; }

  .strip__inner { flex-direction: column; gap: 8px; }
  .strip__divider { display: none; }
  .strip__item { padding: 8px 0; }

  .about__inner { grid-template-columns: 1fr; }
  .about__images { height: 360px; }
  .about__img-main img     { width: 240px; height: 300px; }
  .about__img-secondary img { width: 160px; height: 200px; }
  .about__content { text-align: center; }
  .highlight-item { text-align: left; }
  .about__content .btn { margin: 0 auto; display: block; width: fit-content; }

  .services__grid,
  .services__grid--2,
  .pain-points__grid,
  .testimonials__grid { grid-template-columns: 1fr; }

  .cta-final__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-final__image { display: none; }
  .cta-final__content > p { margin: 0 auto 36px; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 30px; }
  .btn--lg { padding: 16px 28px; font-size: 15px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .about__img-secondary { display: none; }
  .about__images { height: auto; position: static; }
  .about__img-main { position: static; }
  .about__img-main img { width: 100%; height: 340px; }
}
