/* ============================================================
   JAKELINE GLORIA ADVOCACIA
   Design System: Tainá Maciel (marrom/creme + dourado)
   Títulos: Behind The Nineties · Corpo: ABeeZee / Raleway
   Seções alternam claro (#F3ECDD) e escuro (#221E1B)
   ============================================================ */

@font-face {
  font-family: 'Behind The Nineties';
  src: url('fonts/BehindTheNineties-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Behind The Nineties';
  src: url('fonts/BehindTheNineties-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Behind The Nineties';
  src: url('fonts/BehindTheNineties-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Behind The Nineties';
  src: url('fonts/BehindTheNineties-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}

:root {
  /* superfícies */
  --dark: #221E1B;
  --dark-2: #2B2521;
  --dark-3: #171310;
  --cream: #F3ECDD;
  --cream-2: #F9EFE2;
  --cream-3: #FFF0DE;

  /* dourados */
  --tan: #BF9B6F;
  --tan-bright: #EBBF74;
  --tan-deep: #8F6F4B;
  --tan-border: #D9BE93;
  --tan-soft: #4A3E31;

  /* texto */
  --on-dark: #F3ECDD;
  --on-dark-mid: #D9BE93;
  --on-dark-soft: rgba(243,236,221,0.72);
  --on-light: #221E1B;
  --on-light-mid: #5c5148;
  --on-light-soft: #7c6f63;

  --grad-gold: linear-gradient(95deg, #EBBF74 0%, #BF9B6F 50%, #8F6F4B 100%);
  --grad-card: linear-gradient(180deg, #221E1B 0%, #2B2521 100%);
  --grad-btn: linear-gradient(95deg, #BF9B6F 0%, #8F6F4B 100%);

  --serif: 'Behind The Nineties', 'Playfair Display', Georgia, serif;
  --sans: 'ABeeZee', 'Raleway', -apple-system, sans-serif;
  --body: 'Raleway', 'ABeeZee', -apple-system, sans-serif;

  --radius-card: 20px;
  --radius-btn: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--dark);
  color: var(--on-dark);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
h1, h2, h3, p, a, span, strong, small, em { overflow-wrap: break-word; }

/* ============ UTILIDADES ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* Destaque dos itálicos: dourado sólido (sem degradê) e encorpado */
h1 em, .section-title em, .prose h2 em, .dif-content h2 em, .urgency h2 em, .about-content h2 em, .footer-logo em, .logo em {
  font-style: italic;
  font-weight: 600;
  color: var(--tan-bright);
  background: none;
  -webkit-text-fill-color: currentColor;
}
/* Em seções claras o dourado precisa ser mais escuro para contraste */
.about em, .situations em, .faq em, .journey em, .content-section em, .testimonials em { color: var(--tan-deep); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(25px, 3.4vw, 42px);
  line-height: 1.2;
  margin-bottom: 18px;
  color: inherit;
}

.section-subtitle {
  font-size: 16.5px;
  max-width: 640px;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* Ornamento: três losangos dourados (✦ ✦ ✦) */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 26px 0 0;
}
.divider-ornament .line { display: none; }
.divider-ornament .diamond,
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  width: 10px; height: 10px;
  background: var(--grad-gold);
  transform: rotate(45deg);
  border-radius: 2px;
}
.divider-ornament .diamond { width: 13px; height: 13px; }

/* ============ BOTÕES ============ */
.btn-primary {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 32px;
  background: transparent;
  border: none;
  border-radius: var(--radius-btn);
  color: var(--cream-3);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  /* IMPORTANTE: nenhum transform no botão em si.
     O pulse roda no ::before (camada de fundo), senão o texto borra. */
  transition: color 0.3s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad-btn);
  border: 2px solid var(--tan-border);
  border-radius: var(--radius-btn);
  animation: pulseCta 3s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
  transform-origin: center;
}
.btn-primary:hover::before { animation: none; transform: scale(1.03); filter: brightness(1.1); }
.btn-primary svg { transition: transform 0.35s ease; }
.btn-primary:hover svg { transform: translate(3px, -3px); }

@keyframes pulseCta {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--tan);
  text-decoration: none;
  background: transparent;
  border: 2px solid var(--tan);
  border-radius: 100px;
  transition: all 0.35s ease;
}
.btn-secondary:hover { background: rgba(191,155,111,0.12); color: var(--tan-bright); }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(34, 30, 27, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(191,155,111,0.25);
  transition: all 0.3s;
}
nav.scrolled { padding: 13px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.35); }
nav .container { display: flex; justify-content: space-between; align-items: center; position: relative; }

.logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links { display: flex; gap: 34px; align-items: center; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.nav-links a {
  font-family: var(--sans);
  color: var(--on-dark-soft);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--tan-bright); }

.nav-cta {
  padding: 11px 24px;
  background: var(--grad-btn);
  border: 1px solid var(--tan-border);
  border-radius: 100px;
  color: var(--cream-3) !important;
  font-family: var(--sans);
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover { filter: brightness(1.12); }

.menu-toggle {
  display: none;
  background: none; border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 10px; margin: -10px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}

/* ============ HERO (ESCURO) ============ */
.hero {
  min-height: 100vh;
  padding: 150px 0 100px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark);
  background-image: url("img/hero-escritorio-advocacia-manaus.jpg");
  background-size: cover;
  background-position: center right;
  color: var(--on-dark);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(34,30,27,0.97) 0%, rgba(34,30,27,0.9) 35%,
    rgba(34,30,27,0.55) 58%, rgba(34,30,27,0.1) 80%, rgba(34,30,27,0) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; max-width: 1340px !important; width: 100%; padding-left: clamp(28px, 6vw, 80px); }
.hero-content { max-width: 600px; animation: fadeUp 1s ease both; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 60px);
  line-height: 1.14;
  color: var(--cream);
  margin-bottom: 26px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.85;
  color: var(--on-dark-soft);
  margin-bottom: 38px;
  max-width: 520px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-photo-mobile { display: none; }
.hero-photo-frame { border-radius: var(--radius-card); overflow: hidden; border: 1px solid rgba(255,255,255,0.35); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ============ MARQUEE (barra dourada) ============ */
.marquee {
  background: var(--grad-btn);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--tan-border);
  border-bottom: 1px solid var(--tan-border);
}
.marquee-track { display: flex; gap: 46px; width: max-content; animation: scroll 32s linear infinite; }
.marquee-item {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
  display: flex; align-items: center; gap: 46px;
}
.marquee-item::after { content: '✦'; color: rgba(34,30,27,0.55); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SEÇÕES: base clara e escura ============ */
.about, .situations, .faq, .contact, .journey, .content-section, .diferenciais, .emergency, .areas, .testimonials, .urgency {
  padding: 100px 0;
}

/* CLARAS */
.about, .situations, .journey, .content-section, .faq, .contact.light {
  background: var(--cream);
  color: var(--on-light);
}
.about .section-title, .situations .section-title, .journey .section-title,
.faq .section-title, .contact.light .section-title { color: var(--on-light); }
.about .section-subtitle, .situations .section-subtitle, .journey .section-subtitle,
.faq .section-subtitle, .contact.light .section-subtitle { color: var(--on-light-mid); }

/* ESCURAS */
.areas, .testimonials, .emergency, .urgency, .contact, .faq.dark, .content-section.alt {
  background: var(--dark);
  color: var(--on-dark);
}
.areas .section-title, .testimonials .section-title,
.contact .section-title, .faq.dark .section-title { color: var(--cream); }
.areas .section-subtitle, .testimonials .section-subtitle,
.contact .section-subtitle, .faq.dark .section-subtitle { color: var(--on-dark-soft); }

/* ============ CARD PADRÃO (escuro, vidro) ============ */
.area-card, .situation-card, .review-card, .testimonial, .faq-item, .contact-info, .emergency-card, .journey-stage {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: var(--radius-card);
  color: var(--on-dark);
}

/* ============ ÁREAS ============ */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.area-card {
  padding: 24px 24px 34px;
  text-align: center;
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}
a.area-card { display: block; text-decoration: none; color: var(--on-dark); cursor: pointer; }
a.area-card:hover { transform: translateY(-6px); border-color: var(--tan); box-shadow: 0 26px 50px -22px rgba(0,0,0,0.7); }
a.area-card:hover h3 { color: var(--tan-bright); }

.area-photo {
  width: 100%; height: 170px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.22);
}
.area-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
a.area-card:hover .area-photo img { transform: scale(1.06); }

.area-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s;
}
.area-divider { width: 34px; height: 2px; background: var(--grad-gold); margin: 0 auto 16px; }
.area-card p { font-size: 14.5px; line-height: 1.7; color: var(--on-dark-soft); }

/* ============ SITUAÇÕES (seção clara, cards escuros) ============ */
.situations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.situation-card { padding: 34px 24px; text-align: center; }
.situation-card:hover { transform: none; }
.situation-card .icon-wrap {
  width: 58px; height: 58px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(191,155,111,0.14);
  border: 1px solid var(--tan);
  border-radius: 50%;
  color: var(--tan-bright);
}
.situation-card .icon-wrap svg { width: 25px; height: 25px; stroke: var(--tan-bright); fill: none; }
.situation-card p { font-size: 14.5px; line-height: 1.65; color: var(--on-dark); }

/* ============ SOBRE (clara) ============ */
.about .container { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius-card); overflow: hidden; border: 1px solid rgba(34,30,27,0.18); box-shadow: 0 30px 60px -30px rgba(34,30,27,0.5); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.15; color: var(--on-light); margin-bottom: 12px; }
.about-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tan-deep);
  margin-bottom: 24px;
}
.about-content p { color: var(--on-light-mid); margin-bottom: 16px; line-height: 1.85; }
.about-content p strong { color: var(--on-light); font-weight: 700; }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; padding-top: 30px; border-top: 1px solid rgba(34,30,27,0.15); }
.pillar { text-align: center; }
.pillar svg { width: 26px; height: 26px; margin: 0 auto 10px; stroke: var(--tan-deep); fill: none; }
.pillar strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--on-light); }
.pillar span { font-size: 12.5px; color: var(--on-light-soft); }

/* ============ JORNADA (clara) ============ */
.journey-intro { text-align: center; max-width: 720px; margin: 0 auto 54px; color: var(--on-light-mid); font-size: 17px; }
.journey-intro .accent { color: var(--tan-deep); font-weight: 700; }
.journey-stages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.journey-stage { padding: 32px 22px; text-align: center; }
.journey-stage .marker {
  width: 52px; height: 52px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--tan); border-radius: 50%;
  background: rgba(191,155,111,0.14);
}
.journey-stage .marker svg { width: 24px; height: 24px; stroke: var(--tan-bright); fill: none; stroke-width: 1.6; }
.journey-stage h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--cream); margin-bottom: 8px; }
.journey-stage .quote { font-family: var(--sans); font-style: normal; font-weight: 600; font-size: 15px; line-height: 1.5; color: var(--tan-bright); margin-bottom: 12px; }
.journey-stage .desc { font-size: 14px; color: var(--on-dark-soft); line-height: 1.65; }
.journey-cta { text-align: center; margin-top: 54px; }
.journey-cta p { color: var(--on-light-mid); margin-bottom: 22px; }
.journey-cta p strong { color: var(--on-light); }

/* ============ DEPOIMENTOS / CARROSSEL (escura) ============ */
.reviews-carousel { position: relative; max-width: 800px; margin: 0 auto; }
.review-slide { opacity: 0; visibility: hidden; position: absolute; inset: 0; transition: opacity 0.6s ease; }
.review-slide.active { opacity: 1; visibility: visible; position: relative; }
.review-card { padding: 50px 46px 40px; text-align: center; }
.review-card .quote-icon { width: 38px; height: 38px; margin: 0 auto 20px; }
.review-card .quote-icon svg { width: 100%; height: 100%; fill: var(--tan); }
.review-card p { font-family: var(--serif); font-size: 21px; line-height: 1.55; color: var(--cream); font-style: italic; margin-bottom: 26px; }
.review-card .stars { color: var(--tan-bright); letter-spacing: 4px; font-size: 15px; margin-bottom: 8px; }
.review-card .source { font-family: var(--sans); font-size: 11.5px; color: var(--on-dark-mid); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.review-dots { display: flex; justify-content: center; gap: 11px; margin-top: 30px; }
.review-dots button { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: 1px solid var(--tan); background: transparent; cursor: pointer; transition: all 0.3s; }
.review-dots button.active { background: var(--tan); transform: scale(1.25); }

/* ============ URGÊNCIA (escura, com imagem) ============ */
.urgency {
  text-align: center;
  background-color: var(--dark);
  background-image: linear-gradient(rgba(34,30,27,0.9), rgba(34,30,27,0.93)), url("img/urgencia-conflito-familiar.jpg");
  background-size: cover; background-position: center;
  position: relative;
}
.urgency .container { max-width: 900px; }
.urgency h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.8vw, 44px); line-height: 1.2; color: var(--cream); margin-bottom: 22px; }
.urgency p { font-size: 17px; color: var(--on-dark-soft); margin-bottom: 34px; }

/* ============ FAQ (clara) ============ */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--cream);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--tan-bright); }
.faq-question .icon { color: var(--tan); font-size: 22px; transition: transform 0.35s; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 28px; }
.faq-item.open .faq-answer { max-height: 420px; padding: 0 28px 24px; }
.faq-answer p { color: var(--on-dark-soft); font-size: 15px; line-height: 1.8; }

/* ============ CTA de bloco ============ */
.section-cta-block { text-align: center; margin-top: 56px; }
.section-cta-block p { margin-bottom: 22px; font-size: 16.5px; }
.about .section-cta-block p, .situations .section-cta-block p, .faq .section-cta-block p, .journey .section-cta-block p { color: var(--on-light-mid); }
.areas .section-cta-block p, .testimonials .section-cta-block p { color: var(--on-dark-soft); }
.section-cta-block p strong { color: inherit; font-weight: 700; }

/* ============ CONTATO (escura) ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 34px; align-items: stretch; }
.contact-info { padding: 40px 36px; }
.contact-info h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--cream); margin-bottom: 6px; }
.contact-info .tag { display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tan); margin-bottom: 26px; }
.contact-item { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.14); }
.contact-item .icon-wrap { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(191,155,111,0.14); border: 1px solid rgba(191,155,111,0.35); }
.contact-item .icon-wrap svg { width: 18px; height: 18px; stroke: var(--tan-bright); fill: none; stroke-width: 1.6; }
.contact-item small { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tan); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--on-dark); text-decoration: none; font-size: 15.5px; }
.contact-item a:hover { color: var(--tan-bright); }
.contact-cta-wrap { margin-top: 26px; }
.map-frame { border-radius: var(--radius-card); overflow: hidden; border: 1px solid rgba(255,255,255,0.3); min-height: 400px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 400px; border: 0; filter: grayscale(0.4) contrast(1.05); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  position: static; backdrop-filter: none;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(191,155,111,0.2);
  padding: 16px 0;
  font-size: 13px;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; color: var(--on-dark-soft); }
.breadcrumb a { color: var(--on-dark-mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--tan-bright); }
.breadcrumb li[aria-current="page"] { color: var(--tan); }
.breadcrumb .sep { color: rgba(191,155,111,0.5); }

/* ============ CONTEÚDO / PROSA ============ */
.prose { max-width: 790px; margin: 0 auto; }
.prose h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.2; color: var(--on-light); margin: 0 0 24px; }
.content-section.alt .prose h2 { color: var(--cream); }
.prose h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; color: var(--tan-deep); margin: 38px 0 12px; }
.content-section.alt .prose h3 { color: var(--tan-bright); }
.prose p { color: var(--on-light-mid); margin: 0 0 18px; line-height: 1.85; }
.content-section.alt .prose p { color: var(--on-dark-soft); }
.prose p strong { color: var(--on-light); font-weight: 700; }
.content-section.alt .prose p strong { color: var(--cream); }
.prose ul { list-style: none; margin: 0 0 22px; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--on-light-mid); }
.content-section.alt .prose ul li { color: var(--on-dark-soft); }
.prose ul li::before { content: ''; position: absolute; left: 3px; top: 11px; width: 8px; height: 8px; background: var(--grad-gold); transform: rotate(45deg); border-radius: 1px; }

.callout {
  border-left: 3px solid var(--tan);
  background: rgba(191,155,111,0.12);
  padding: 22px 26px;
  border-radius: 0 14px 14px 0;
  margin: 28px 0;
}
.callout p { margin: 0; color: var(--on-light); }
.content-section.alt .callout p { color: var(--cream); }

/* ============ DIFERENCIAIS (imagem full no background) ============ */
.diferenciais {
  position: relative;
  padding: 120px 0;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--on-dark);
  text-align: center;
  overflow: hidden;
}
.diferenciais::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,30,27,0.86) 0%, rgba(34,30,27,0.92) 100%);
  pointer-events: none;
}
.diferenciais .container { position: relative; z-index: 2; max-width: 1000px; }
.diferenciais .eyebrow { color: var(--tan-bright); }
.diferenciais h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.2;
  color: var(--cream);
  margin: 10px 0 44px;
}
.dif-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 38px;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}
.dif-list li {
  position: relative;
  padding-left: 28px;
  color: var(--cream);
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.6;
}
.dif-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 10px;
  width: 8px; height: 8px;
  background: var(--tan-bright);
  transform: rotate(45deg);
  border-radius: 1px;
}
@media (max-width: 760px) {
  .diferenciais { padding: 80px 0; }
  .dif-list { grid-template-columns: 1fr; gap: 14px; }
}

/* ============ EMERGÊNCIA (seção clara, card escuro) ============ */
.emergency { padding: 90px 0; }
.emergency-card {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  max-width: 980px; margin: 0 auto;
  border-left: 4px solid #C0562F;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(34,30,27,0.6);
}
.emergency-card .em-media img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.emergency-card .em-body { padding: 34px 38px; }
.emergency-card .em-tag { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #E08A5A; margin-bottom: 14px; }
.emergency-card .em-tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #C0562F; box-shadow: 0 0 0 4px rgba(192,86,47,0.2); }
.emergency-card h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--cream); margin-bottom: 12px; }
.emergency-card p { color: var(--on-dark-soft); line-height: 1.75; }
.emergency-card .em-numbers { display: flex; gap: 14px; margin: 18px 0 6px; flex-wrap: wrap; }
.emergency-card .em-numbers a { display: inline-flex; flex-direction: column; align-items: center; padding: 12px 24px; border: 1px solid rgba(191,155,111,0.4); border-radius: 14px; text-decoration: none; background: rgba(0,0,0,0.25); transition: all 0.3s; }
.emergency-card .em-numbers a:hover { border-color: #C0562F; background: rgba(192,86,47,0.14); }
.emergency-card .em-numbers .num { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--cream); line-height: 1; }
.emergency-card .em-numbers .lbl { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-mid); margin-top: 6px; }

/* ============ TAGS SEO ============ */
.seo-tags { background: var(--dark-3); padding: 36px 0 12px; border-top: 1px solid rgba(191,155,111,0.15); }
.seo-tags .tags-label { display: block; font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan-deep); margin-bottom: 14px; }
.seo-tags .tag-list { display: flex; flex-wrap: wrap; gap: 9px 10px; }
.seo-tags .tag-list span { font-family: var(--sans); font-size: 12px; color: var(--on-dark-soft); background: rgba(255,255,255,0.03); border: 1px solid rgba(191,155,111,0.22); padding: 6px 14px; border-radius: 100px; }

/* ============ FOOTER ============ */
footer { padding: 40px 0; background: var(--dark-3); color: var(--on-dark-soft); text-align: center; border-top: 1px solid rgba(191,155,111,0.18); }
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
footer p { font-family: var(--sans); font-size: 13px; }
footer .footer-logo { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--cream); }
footer .footer-nav {
  position: static; backdrop-filter: none; background: none;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px;
  width: 100%; order: 2;
  padding: 8px 0; margin: 4px 0;
  border-top: 1px solid rgba(191,155,111,0.14);
  border-bottom: 1px solid rgba(191,155,111,0.14);
}
footer .footer-nav a { font-family: var(--sans); color: var(--on-dark-soft); text-decoration: none; font-size: 13px; transition: color 0.3s; }
footer .footer-nav a:hover { color: var(--tan-bright); }
footer .footer-credit { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 12px; color: var(--on-light-soft); text-decoration: none; }
footer .footer-credit strong { color: var(--on-dark-mid); }
footer .footer-credit:hover, footer .footer-credit:hover strong { color: var(--tan-bright); }
footer .footer-policy-link { color: inherit; text-decoration: none; }
footer .footer-policy-link:hover { color: var(--tan-bright); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 99;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .areas-grid, .situations-grid, .journey-stages { grid-template-columns: repeat(2, 1fr); }
  .about .container, .diferenciais .container, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .emergency-card { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; transform: none; }
  .menu-toggle { display: flex; order: 3; }
  .nav-cta { margin-left: auto; margin-right: 12px; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; right: 16px; left: 16px;
    transform: none;
    background: var(--dark-2);
    padding: 22px;
    border: 1px solid rgba(191,155,111,0.3);
    border-radius: var(--radius-card);
    gap: 14px; align-items: stretch;
  }
  .hero { min-height: auto; padding: 130px 0 70px; background-position: center; }
  .hero::before { background: linear-gradient(to bottom, rgba(34,30,27,0.95), rgba(34,30,27,0.9)); }
  .hero-photo-mobile { display: block; margin-top: 40px; }
  .about, .situations, .faq, .contact, .journey, .content-section, .diferenciais, .areas, .testimonials, .urgency { padding: 70px 0; }
}
@media (max-width: 640px) {
  .areas-grid, .situations-grid, .journey-stages { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .review-card { padding: 36px 26px 30px; }
  .review-card p { font-size: 18px; }
  .contact-info { padding: 30px 24px; }
  .emergency-card .em-body { padding: 26px 24px; }
  footer .container { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .marquee-track { animation: none; }
}

/* ============================================================
   MOTION (design system): entrada por scroll + hovers 0.3s
   ============================================================ */
@keyframes fadeInUp   { from { opacity: 0; transform: translate3d(0, 48px, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translate3d(-48px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeInRight{ from { opacity: 0; transform: translate3d(48px, 0, 0); } to { opacity: 1; transform: none; } }

.reveal { opacity: 0; }
.reveal.animated {
  animation-duration: 1.25s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.animated.fadeInUp    { animation-name: fadeInUp; }
.reveal.animated.fadeInLeft  { animation-name: fadeInLeft; }
.reveal.animated.fadeInRight { animation-name: fadeInRight; }

/* ============================================================
   DEPOIMENTOS (estilo cards do Google, seção clara)
   ============================================================ */


.testimonials .eyebrow {
  border: 1px solid rgba(191,155,111,0.5);
  border-radius: 100px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.04);
  color: var(--tan-bright);
  letter-spacing: 0.16em;
  font-size: 11px;
}
.testimonials .divider-ornament { display: none; }

.reviews { position: relative; display: flex; align-items: center; gap: 18px; }
.rev-viewport { overflow: hidden; flex: 1; padding: 6px 0; }
.rev-track { display: flex; gap: 22px; transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1); }
.rev-card {
  flex: 0 0 calc((100% - 44px) / 3);
  background: #FFFCF6;
  border: 1px solid rgba(143,111,75,0.25);
  border-radius: 16px;
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 34px -20px rgba(34,30,27,0.35);
}
.rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.rev-top svg { width: 22px; height: 22px; flex-shrink: 0; }
.rev-stars { color: #E8A33D; letter-spacing: 2px; font-size: 15px; }
.rev-card p { color: var(--on-light); font-size: 15px; line-height: 1.72; margin: 0 0 22px; flex: 1; }
.rev-name { font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--tan-deep); }

.rev-arrow {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(143,111,75,0.45);
  border-radius: 100px;
  background: transparent;
  color: var(--tan-deep);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.rev-arrow:hover { background: var(--tan-deep); color: var(--cream); border-color: var(--tan-deep); }
.rev-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.rev-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.rev-dots button {
  width: 8px; height: 8px; padding: 0;
  border-radius: 50%; border: none;
  background: rgba(143,111,75,0.32);
  cursor: pointer; transition: all 0.3s;
}
.rev-dots button.active { background: var(--tan-deep); transform: scale(1.3); }

@media (max-width: 1024px) { .rev-card { flex: 0 0 calc((100% - 22px) / 2); } }
@media (max-width: 700px) {
  .rev-card { flex: 0 0 100%; }
  .reviews { gap: 8px; }
  .rev-arrow { width: 38px; height: 38px; }
}

/* Destaque dentro do parágrafo: serifada em itálico (corpo segue na fonte normal) */
.prose p em, .prose p .destaque {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.12em;
  color: var(--tan-deep);
  letter-spacing: 0.005em;
}
.content-section.alt .prose p em { color: var(--tan-bright); }

/* Parágrafo único da seção de escuta: mais respirado e legível */
.prose .escuta-lead {
  font-size: 18.5px;
  line-height: 1.9;
  color: var(--on-light-mid);
  margin: 0;
}

/* Itálico dos títulos: dourado ESCURO em seção clara, CLARO em seção escura */
.about .about-content h2 em,
.situations .section-title em,
.journey .section-title em,
.faq .section-title em,
.contact.light .section-title em,
.content-section .prose h2 em {
  color: var(--tan-deep);
}
.testimonials .section-title em,
.faq.dark .section-title em,
.contact .section-title em,
.urgency h2 em,
.content-section.alt .prose h2 em,
.diferenciais h2 em {
  color: var(--tan-bright);
}
.testimonials .section-title em,
.faq .section-title em,
.urgency h2 em,
.content-section.alt .prose h2 em,
.diferenciais h2 em {
  color: var(--tan-bright);
}

/* Quando duas seções claras ficam adjacentes (ex: jornada + escuta no divórcio),
   a segunda usa um creme levemente diferente para criar a quebra visual. */
.content-section.soft {
  background: var(--cream-2);
  border-top: 1px solid rgba(143,111,75,0.18);
}
