/* ============================================
   DRA. LARISSA LUNARDI — ODONTOLOGIA
   Design System
   Cores: #a87b05 (dourado) · #0A225E (azul) · branco
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #a87b05;
  --gold-light: #c79a2e;
  --gold-soft: #e9d9a8;
  --gold-pale: #f7f0dd;
  --navy: #0A225E;
  --navy-deep: #061640;
  --navy-light: #1a3676;
  --navy-soft: #3a5288;
  --white: #ffffff;
  --cream: #fbf9f4;
  --gray-text: #5a6478;
  --gray-light: #e8eaef;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --shadow-sm: 0 2px 12px rgba(10, 34, 94, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 34, 94, 0.10);
  --shadow-lg: 0 24px 70px rgba(10, 34, 94, 0.16);
  --shadow-gold: 0 12px 36px rgba(168, 123, 5, 0.28);

  --radius: 18px;
  --radius-lg: 28px;
  --max-width: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Proteção: nenhum ícone SVG decorativo pode estourar de tamanho,
   mesmo que o CSS específico não carregue ou demore (anti-FOUC) */
svg { max-width: 100%; max-height: 100%; }
.service-icon, .fw-check, .loc-icon, .insta-cta-icon,
.footer-social a, .sticky-cta-btn, .proof-arrow, .aside-avatar,
.logo-mark, .blog-cat, .read-more, .chev { flex-shrink: 0; }
.btn svg, .read-more svg, .loc-detail svg, .back-link svg,
.art-nav-link svg, .sticky-cta-btn svg, .footer-social svg,
.faq-q svg, .menu-toggle svg, .proof-arrow svg { width: 1.2em; height: 1.2em; }

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

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 17px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

::selection { background: var(--gold); color: var(--white); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 17px 36px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(168, 123, 5, 0.42);
}
.btn-gold .arrow { transition: transform 0.4s var(--ease); }
.btn-gold:hover .arrow { transform: translateX(6px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---------- Section headers ---------- */
.section { padding: 110px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center;
  position: relative;
}
.section-title.left { text-align: left; }
.ghost-title {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 14vw, 11rem);
  color: currentColor;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}
.header.scrolled {
  background: rgba(10, 34, 94, 0.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.nav {
  background: var(--navy);
  border-radius: 100px;
  padding: 14px 18px 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
}
.header.scrolled .nav { background: transparent; box-shadow: none; }
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.01em;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 9px 15px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 60% 80% at 85% 30%, var(--gold-pale) 0%, transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 8%;
  width: 280px; height: 100%;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 100%);
  opacity: 0.18;
  transform: skewX(-8deg);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 28px;
  color: var(--navy);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-text {
  font-size: 1.12rem;
  color: var(--gray-text);
  margin-bottom: 38px;
  max-width: 480px;
}
.hero-badges {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-badge { display: flex; flex-direction: column; }
.hero-badge .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.hero-badge .label {
  font-size: 0.82rem;
  color: var(--gray-text);
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.hero-visual {
  position: relative;
}
.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.6;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-name-ghost {
  position: absolute;
  top: -34px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--gold-soft);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}
.hero-float-card {
  position: absolute;
  bottom: 34px; left: -34px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  max-width: 230px;
}
.hero-float-card .star { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.hero-float-card small { color: var(--gray-text); font-size: 0.78rem; }
.hero-float-card strong { display: block; font-size: 0.92rem; color: var(--navy); }

/* Placeholder image styling */
.img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 20px;
  flex-direction: column;
  gap: 8px;
}
.img-ph svg { width: 40px; height: 40px; opacity: 0.5; }

/* ============================================
   SOBRE / ABOUT
   ============================================ */
.about {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 360px; height: 360px;
  border: 1px solid rgba(168, 123, 5, 0.25);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-visual { position: relative; }
.about-img-frame {
  border-radius: 240px 240px 24px 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  background: var(--navy-light);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--gold-soft);
  margin-bottom: 30px;
}
.about-text p { color: rgba(255,255,255,0.82); margin-bottom: 20px; }
.about-text strong { color: var(--white); font-weight: 600; }
.about-creds {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.cred-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(168,123,5,0.4);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gold-soft);
}

/* ============================================
   EMPATHY / PARA QUEM
   ============================================ */
.empathy {
  background:
    linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 60%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.empathy-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.empathy-images .img-cell {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
  background: var(--navy-light);
}
.empathy-images .img-cell:first-child { grid-column: 1 / -1; aspect-ratio: 2/1.1; }
.empathy-images img { width: 100%; height: 100%; object-fit: cover; }
.empathy h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--gold-soft);
  margin-bottom: 26px;
  line-height: 1.2;
}
.empathy-text p { color: rgba(255,255,255,0.82); margin-bottom: 18px; }
.empathy-text strong { color: var(--white); }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.service-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  border-top: 3px solid var(--gold);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(168,123,5,0.18);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all 0.5s var(--ease);
}
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); }
.service-icon svg { width: 28px; height: 28px; stroke: var(--gold-soft); transition: stroke 0.5s var(--ease); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: var(--gold-soft);
  transition: color 0.5s var(--ease);
}
.service-card:hover h3 { color: var(--white); }
.service-card p { color: rgba(255,255,255,0.75); font-size: 0.96rem; transition: color 0.5s var(--ease); }
.service-card:hover p { color: rgba(255,255,255,0.95); }
.services-cta { text-align: center; margin-top: 56px; }

/* ============================================
   PARA QUEM (checklist)
   ============================================ */
.forwhom {
  background: var(--navy-soft);
  background: linear-gradient(135deg, #44608f 0%, var(--navy-light) 100%);
  color: var(--white);
}
.forwhom-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.forwhom h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white); }
.forwhom-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fw-item {
  background: rgba(10, 34, 94, 0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.4s var(--ease);
}
.fw-item:hover { background: rgba(10,34,94,0.8); transform: translateX(4px); }
.fw-check {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.fw-check svg { width: 18px; height: 18px; stroke: var(--white); }
.fw-item p { font-size: 0.94rem; color: rgba(255,255,255,0.9); }

/* ============================================
   INSTAGRAM CTA
   ============================================ */
.insta-cta { background: var(--cream); }
.insta-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.insta-cta-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 280px; height: 280px;
  border: 1px solid rgba(168,123,5,0.2);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
}
.insta-cta-card > * { position: relative; z-index: 1; }
.insta-cta-icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  background: rgba(168,123,5,0.15);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}
.insta-cta-icon svg { width: 34px; height: 34px; stroke: var(--gold-soft); }
.insta-cta-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin: 8px 0 16px;
}
.insta-cta-card p {
  color: rgba(255,255,255,0.8);
  font-size: 1.08rem;
  max-width: 480px;
  margin: 0 auto 32px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
}
.faq .ghost-title { color: var(--white); }
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.faq-item.open { background: rgba(255,255,255,0.08); border-color: rgba(168,123,5,0.4); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  text-align: left;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .chev {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
  stroke: var(--gold-soft);
}
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 0 26px;
  color: rgba(255,255,255,0.78);
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 24px; }

/* ============================================
   LOCATION
   ============================================ */
.location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.loc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}
.loc-icon {
  width: 54px; height: 54px;
  background: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.loc-icon svg { width: 26px; height: 26px; stroke: var(--gold-soft); }
.loc-card h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }
.loc-card .addr { color: var(--gray-text); margin-bottom: 8px; }
.loc-card .addr strong { color: var(--navy); }
.loc-detail { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--gray-text); }
.loc-detail svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; }
.loc-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.loc-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-preview { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(168,123,5,0.25), transparent 50%),
    linear-gradient(135deg, var(--navy-light), var(--navy-deep));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  width: 110px; height: 110px;
  border: 1.5px solid rgba(233,217,168,0.22);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  transition: all 0.6s var(--ease);
}
.blog-card:hover .blog-card-img::after { transform: rotate(225deg) scale(1.1); }
.blog-card-img .bc-icon { position: relative; z-index: 1; width: 48px; height: 48px; }
.blog-card-img .bc-icon svg { width: 100%; height: 100%; stroke: var(--gold-soft); fill: none; }
.blog-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.blog-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; border-top: 3px solid var(--gold); }
.blog-cat-inline {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.blog-card h3 {
  font-size: 1.28rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.blog-card p { color: var(--gray-text); font-size: 0.94rem; flex: 1; margin-bottom: 18px; }
.blog-card .read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card .read-more .arrow { transition: transform 0.3s var(--ease); }
.blog-card:hover .read-more .arrow { transform: translateX(5px); }
.blog-preview-cta { text-align: center; margin-top: 52px; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background:
    radial-gradient(ellipse at 50% 0%, var(--gold) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 130px 0;
}
.cta-final h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 24px;
  color: var(--white);
}
.cta-final h2 em { color: var(--gold-soft); font-style: italic; }
.cta-final p {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; margin-bottom: 11px; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; fill: var(--white); }

/* ============================================
   PROVA SOCIAL — Carrossel horizontal
   ============================================ */
.proof {
  background: var(--white);
  overflow: hidden;
}
.proof .ghost-title { color: var(--navy); }
.proof-intro { text-align: center; max-width: 620px; margin: 0 auto; }
.proof-intro p {
  color: var(--gray-text);
  font-size: 1.08rem;
  margin-top: 16px;
}
.proof-carousel-wrap {
  position: relative;
  margin-top: 56px;
}
.proof-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--gold-pale);
}
.proof-carousel::-webkit-scrollbar { height: 8px; }
.proof-carousel::-webkit-scrollbar-track { background: var(--gold-pale); border-radius: 100px; }
.proof-carousel::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 100px; }
.proof-item {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-light);
  aspect-ratio: 4/5;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.proof-item:hover { transform: translateY(-6px); }
.proof-item img { width: 100%; height: 100%; object-fit: cover; }
.proof-item .proof-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(6,22,64,0.92));
  color: var(--white);
  padding: 40px 20px 18px;
  font-size: 0.88rem;
  font-weight: 500;
}
.proof-item .proof-tag span {
  display: block;
  font-size: 0.74rem;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.proof-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}
.proof-arrow {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.proof-arrow:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.proof-arrow svg { width: 22px; height: 22px; }
.proof-hint {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.84rem;
  margin-top: 18px;
  opacity: 0.7;
}

/* ============================================
   STICKY CTA BAR (rodapé colante - estilo Botier)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 -8px 30px rgba(10, 34, 94, 0.25);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-cta-text { display: flex; flex-direction: column; line-height: 1.3; }
.sticky-cta-text strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.sticky-cta-text span { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.sticky-cta-btn:hover { transform: translateY(-2px); background: var(--navy); color: var(--white); }
.sticky-cta-btn svg { width: 22px; height: 22px; fill: #25D366; transition: fill 0.3s; }
.sticky-cta-btn:hover svg { fill: var(--white); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Marquee divider */
.marquee {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin: 0 24px;
}
.marquee span::after { content: '•'; margin-left: 48px; opacity: 0.5; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .empathy-grid, .ig-grid, .forwhom-grid, .location-grid { gap: 40px; }
  .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(82%, 340px);
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 60px 30px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; padding: 14px 20px; width: 100%; }
  .nav-cta { margin: 12px 0 0; text-align: center; justify-content: center; }
  .menu-toggle { display: flex; z-index: 1001; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-content { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero::before { display: none; }

  .about-grid, .empathy-grid, .ig-grid, .forwhom-grid, .location-grid {
    grid-template-columns: 1fr;
  }
  .about-visual, .ig-right { max-width: 440px; margin: 0 auto; }
  .empathy-images { order: 2; }
  .section-title.left { text-align: center; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .forwhom-list { grid-template-columns: 1fr; }
  .empathy-images { grid-template-columns: 1fr; }
  .empathy-images .img-cell:first-child { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .loc-card { padding: 30px; }
  .btn { padding: 15px 28px; font-size: 0.88rem; }
  .nav { padding: 12px 14px 12px 20px; }
  .logo-text { font-size: 1.1rem; }
  .sticky-cta-inner { padding: 12px 18px; gap: 12px; }
  .sticky-cta-text { display: none; }
  .sticky-cta-btn { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
  .proof-item { width: 240px; }
}
