/* ============================================================
   Psicóloga Poliana Paixão — Design System Premium
   Paleta: Verde Teal (identidade) + Marfim + Terracota Suave
   Tipografia: Cormorant Garamond + Lato
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;600;700&display=swap');

:root {
  /* Cores principais — inspiradas no logo teal e tons terrosos suaves */
  --teal:          #3D7A6F;
  --teal-dark:     #2E5F56;
  --teal-medium:   #4D9085;
  --teal-light:    #6AAEA4;
  --teal-pale:     #A8CEC9;
  --teal-ultra:    #D8EDEB;

  /* Tons quentes — marfim, champagne, areia (sem marrom/marsala) */
  --ivory:         #FAFAF5;
  --ivory-warm:    #F5F1E8;
  --ivory-medium:  #EDE7D9;
  --ivory-deep:    #E2D8C8;
  --sand:          #D4C9B0;

  /* Terracota suave — acento pontual, não dominante */
  --terra:         #C4895A;
  --terra-light:   #DDB08A;
  --terra-pale:    #F0DECF;

  /* Textos */
  --text-dark:     #2A3C35;
  --text-medium:   #4A6558;
  --text-light:    #7A9A8E;
  --text-muted:    #A0B5AE;

  /* Branco */
  --white:         #FFFFFF;

  /* Sombras */
  --shadow-xs:  0 1px 4px rgba(44, 80, 68, 0.06);
  --shadow-sm:  0 2px 12px rgba(44, 80, 68, 0.09);
  --shadow-md:  0 6px 28px rgba(44, 80, 68, 0.13);
  --shadow-lg:  0 12px 48px rgba(44, 80, 68, 0.18);
  --shadow-xl:  0 20px 64px rgba(44, 80, 68, 0.22);

  /* Raios */
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  /* Transição */
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Tipografia ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1.02rem; color: var(--text-medium); line-height: 1.85; }

/* ── Layout ──────────────────────────────────────────────── */
.container  { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.bg-ivory   { background: var(--ivory); }
.bg-warm    { background: var(--ivory-warm); }
.bg-white   { background: var(--white); }
.bg-cream   { background: var(--ivory-warm); }

/* ── Navegação ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 245, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ivory-medium);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.91rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-dark);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover { color: var(--teal); background: var(--teal-ultra); }
.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  padding: 10px;
  z-index: 100;
  border: 1px solid var(--ivory-medium);
}
.nav-menu .has-dropdown { padding-bottom: 0; }
.nav-menu .has-dropdown:hover .dropdown-menu { display: block; }
.nav-menu .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  display: block;
}
.nav-menu .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.nav-menu .dropdown-menu a:hover { background: var(--teal-ultra); color: var(--teal); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  margin-left: 10px;
  transition: var(--transition) !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.3px;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}
.nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,122,111,0.35);
}
.nav-cta svg { width: 17px; height: 17px; fill: white; flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--teal); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Botões ──────────────────────────────────────────────── */
.btn-compact { padding: 12px 24px; font-size: 0.88rem; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(61,122,111,0.38);
}
.btn-secondary {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover {
  background: #1eba58;
  border-color: #1eba58;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.42);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.85);
}
.btn-full { width: 100%; justify-content: center; }
.btn-terra {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn-terra:hover {
  background: #b07a4e;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(196,137,90,0.38);
}

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
  background: rgba(235, 235, 225, 0.98);
  color: var(--text-dark);
  border-bottom: 1px solid var(--ivory-medium);
  font-size: 0.85rem;
  padding: 10px 0;
}
.top-bar a { color: inherit; }
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-medium);
  transition: var(--transition);
}
.top-bar-address:hover { color: var(--teal); }
.top-bar-address svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }
.top-bar-socials { display: flex; align-items: center; gap: 12px; }
.top-bar-socials a { color: var(--text-medium); transition: var(--transition); display: flex; align-items: center; }
.top-bar-socials a:hover { color: var(--teal); }
.top-bar-socials svg { width: 17px; height: 17px; fill: currentColor; }
@media (max-width: 768px) {
  .top-bar { display: none; }
}

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  color: white;
}
.whatsapp-float svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
.whatsapp-float-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.whatsapp-float-text span:first-child { font-size: 0.9rem; }
.whatsapp-float-text span:last-child { font-size: 0.78rem; opacity: 0.92; }

/* ── Hero Principal ──────────────────────────────────────── */
.hero {
  background: linear-gradient(155deg, var(--ivory-warm) 0%, var(--ivory) 55%, var(--teal-ultra) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 60px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(168,206,201,0.28) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(196,137,90,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(61,122,111,0.1);
  border: 1px solid rgba(61,122,111,0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--teal-light);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-title {
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}
.hero-title span { color: var(--teal); font-style: italic; }
.hero-text {
  font-size: 1.08rem;
  color: var(--text-medium);
  margin-bottom: 38px;
  max-width: 530px;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-medium);
  font-weight: 600;
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--teal-medium); flex-shrink: 0; }

/* Imagem Hero */
.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.hero-img-deco {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--teal-pale), var(--teal-ultra));
  z-index: 1;
}
.hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: -22px;
  background: var(--teal);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.hero-img-badge strong {
  display: block;
  font-size: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1;
}
.hero-img-badge span {
  font-size: 0.72rem;
  opacity: 0.88;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ── Seção de Estatísticas ───────────────────────────────── */
.stats-section {
  background: var(--teal);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
}
.stats-section .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.18);
}
.stat-card:last-child::after { display: none; }
.stat-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-card span { font-size: 0.88rem; color: rgba(255,255,255,0.72); letter-spacing: 0.3px; }

/* ── Seção Labels/Títulos ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-title { color: var(--text-dark); margin-bottom: 18px; }
.section-title span { color: var(--teal); font-style: italic; }
.section-subtitle {
  color: var(--text-medium);
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 56px;
  line-height: 1.85;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-pale));
  border-radius: 2px;
  margin: 0 0 28px;
}
.text-center .divider { margin: 0 auto 28px; }

/* ── Sobre ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-img { position: relative; }
.about-img img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
}
.about-img-badge {
  position: absolute;
  bottom: -18px;
  right: -22px;
  background: var(--teal);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-img-badge strong {
  display: block;
  font-size: 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge span {
  font-size: 0.76rem;
  opacity: 0.9;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 36px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--ivory-warm);
  border-radius: 10px;
  border-left: 3px solid var(--teal);
  transition: var(--transition);
}
.credential-item:hover { background: var(--teal-ultra); }
.credential-item svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; }
.credential-item span { font-size: 0.92rem; color: var(--text-medium); font-weight: 500; }

/* ── Serviços ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-deep);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-pale);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 66px;
  height: 66px;
  background: var(--teal-ultra);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); }
.service-icon svg { width: 28px; height: 28px; color: var(--teal); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { color: var(--text-dark); margin-bottom: 12px; font-size: 1.3rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.75; }
.service-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.service-card .link-arrow:hover { gap: 11px; }

/* ── Especialidades ──────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-item {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--ivory-deep);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-pale);
  transform: translateY(-3px);
}
.feature-icon {
  width: 54px; height: 54px;
  background: var(--teal-ultra);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon { background: var(--teal); }
.feature-icon svg { width: 24px; height: 24px; color: var(--teal); transition: var(--transition); }
.feature-item:hover .feature-icon svg { color: var(--white); }
.feature-text h4 { color: var(--text-dark); margin-bottom: 6px; font-size: 1.05rem; }
.feature-text p { font-size: 0.9rem; line-height: 1.65; }

/* ── Abordagem / Método Florescer ────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-img img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
}
.approach-points { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.approach-point { display: flex; gap: 20px; }
.approach-num {
  width: 44px; height: 44px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}
.approach-point-content h4 { color: var(--text-dark); margin-bottom: 6px; }
.approach-point-content p { font-size: 0.93rem; line-height: 1.75; }

/* ── Processo (Como funciona) ────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-pale), transparent);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid var(--ivory-warm);
  box-shadow: 0 0 0 3px var(--teal-pale), var(--shadow-sm);
}
.step-item h4 { color: var(--text-dark); margin-bottom: 8px; font-size: 1rem; }
.step-item p { font-size: 0.88rem; line-height: 1.7; }

/* ── Citação Jung ────────────────────────────────────────── */
.quote-section {
  background: var(--teal-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}
.quote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}
.quote-author {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-light);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--ivory-deep);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--teal-pale); box-shadow: var(--shadow-xs); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
  transition: var(--transition);
  gap: 16px;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal-ultra);
  border: 1px solid var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon svg { width: 13px; height: 13px; color: var(--teal); transition: var(--transition); }
.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease, padding 0.3s ease;
}
.faq-answer p { padding-bottom: 22px; font-size: 0.96rem; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-item.active .faq-icon { background: var(--teal); border-color: var(--teal); }
.faq-item.active .faq-icon svg { color: white; transform: rotate(45deg); }
.faq-item.active .faq-question { color: var(--teal); }

/* ── Contato ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 480px;
}
.contact-details { margin-top: 32px; }
.contact-details p {
  margin-bottom: 10px;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-medium) 100%);
  padding: 96px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 560px; height: 560px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto 44px; font-size: 1.06rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Rodapé ──────────────────────────────────────────────── */
/* Paleta earthy: areia profunda + terracota + marfim — tons terrosos conforme briefing */
.footer {
  background: #14312d;
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 130px;
  width: auto;
  filter: invert(1) grayscale(1) brightness(2.5) contrast(1.8);
  margin-bottom: 20px;
  opacity: 0.88;
  mix-blend-mode: screen;
}
.footer-brand p {
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 26px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.footer-social a:hover { background: var(--terra); border-color: var(--terra); }
.footer-social svg { width: 16px; height: 16px; fill: white; }
.footer-col h4 {
  color: var(--terra-light);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 22px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--terra-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 15px; align-items: flex-start; }
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--terra); flex-shrink: 0; margin-top: 4px; }
.footer-contact-item span { color: rgba(255,255,255,0.52); font-size: 0.88rem; line-height: 1.55; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-crp { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-byline { color: rgba(255,255,255,0.55); text-decoration: underline; transition: var(--transition); }
.footer-byline:hover { color: var(--white); }

/* ── Page Hero (sub-pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 88px 0 70px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -8%;
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }
.page-hero .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.page-hero .hero-copy { text-align: left; }
.page-hero .hero-copy p { color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 28px; line-height: 1.85; }
.page-hero .hero-image { display: flex; align-items: center; justify-content: center; min-height: 420px; }
.hero-image-round { width: 100%; max-width: 620px; overflow: hidden; border-radius: 24px; }
.hero-image-round img { width: 100%; max-height: 560px; border-radius: 24px; box-shadow: var(--shadow-lg); object-fit: cover; display: block; }
.page-hero .hero-copy { max-width: 560px; }
.page-hero-sm { padding: 68px 0 52px; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.35); }

/* ── Componentes extras ──────────────────────────────────── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.link-arrow:hover { gap: 12px; color: var(--teal-dark); }

.bio-card {
  background: var(--ivory-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ivory-deep);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.bio-card p { margin-bottom: 18px; color: var(--text-medium); line-height: 1.8; }

.section-alt { background: var(--ivory-warm); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Cards de estatísticas das sub-páginas (melhor contraste e hierarquia) */
.section-alt .stat-card {
  background: var(--white);
  border: 1px solid var(--ivory-medium);
  border-radius: var(--radius);
  padding: 34px 22px;
  box-shadow: var(--shadow-sm);
}
.section-alt .stat-card::after { display: none; }
.section-alt .stat-card span {
  display: block;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}
.section-alt .stat-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin: 0;
}

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.content-grid.reverse { grid-template-columns: 1fr 1fr; }
.content-grid.reverse > *:first-child { order: 2; }

.method-list { display: grid; gap: 18px; margin-top: 28px; }
.method-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text-medium);
  line-height: 1.8;
}
.method-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.85;
}

.contact-panel { background: linear-gradient(135deg, rgba(168,206,201,0.2), rgba(61,122,111,0.08)); }
.contact-panel-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 42px 0;
}
.contact-panel-inner h2 { margin: 18px 0 14px; color: var(--text-dark); }
.contact-panel-inner p { color: var(--text-medium); line-height: 1.8; }

.service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-pale); }
.service-detail-card h2 { margin-bottom: 14px; color: var(--text-dark); }
.service-detail-card p { margin-bottom: 18px; color: var(--text-medium); line-height: 1.8; }

.link-card {
  color: var(--teal);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-card:hover { text-decoration: underline; }

.icon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--ivory-deep);
  box-shadow: var(--shadow-sm);
}
.icon-card h3 { margin-bottom: 14px; color: var(--teal); }
.icon-card p { color: var(--text-medium); line-height: 1.75; }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.location-info h3 { color: var(--text-dark); margin-bottom: 20px; }
.location-photo-card { display: flex; flex-direction: column; gap: 18px; }
.location-photo-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 240px;
  max-height: 360px;
}
.location-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-frame { padding: 0; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; }
.map-card iframe { width: 100%; height: 100%; border: none; }

.benefits-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-check {
  width: 26px; height: 26px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-check svg { width: 14px; height: 14px; }
.benefit-text h4 { color: var(--text-dark); margin-bottom: 4px; font-size: 1rem; }
.benefit-text p { font-size: 0.92rem; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-deep);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal-pale); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-stars span { color: var(--terra); font-size: 1.1rem; }
.testimonial-text { font-style: italic; color: var(--text-medium); margin-bottom: 24px; line-height: 1.8; font-size: 0.97rem; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
  border: 2px solid var(--teal-pale);
}
.testimonial-author-info strong { display: block; color: var(--text-dark); font-size: 0.9rem; }
.testimonial-author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* Formulários */
.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ivory-deep);
}
.contact-form h3 { color: var(--text-dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; font-size: 0.88rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 17px;
  border: 1.5px solid var(--ivory-deep);
  border-radius: 10px;
  font-size: 0.96rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--ivory-warm);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61,122,111,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Artigos */
.article-wrap { max-width: 800px; margin: 0 auto; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ivory-deep);
  flex-wrap: wrap;
}
.article-meta span { font-size: 0.88rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.article-wrap h2 { margin: 44px 0 18px; padding-bottom: 10px; border-bottom: 1.5px solid var(--ivory-deep); }
.article-wrap h3 { color: var(--teal); margin: 32px 0 14px; }
.article-wrap p { margin-bottom: 20px; line-height: 1.9; }
.article-wrap ul, .article-wrap ol { margin: 14px 0 24px 28px; }
.article-wrap li { margin-bottom: 10px; line-height: 1.75; color: var(--text-medium); }
.article-wrap strong { color: var(--text-dark); }
.article-highlight {
  background: var(--ivory-warm);
  border-left: 3px solid var(--teal);
  padding: 22px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}
.article-highlight p { margin: 0; font-style: italic; }
.article-author-box {
  background: var(--ivory-warm);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 56px;
  border: 1px solid var(--ivory-deep);
}
.article-author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.article-author-box h4 { color: var(--text-dark); margin-bottom: 4px; }
.article-author-box p { font-size: 0.9rem; margin: 0; }

/* Blog */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 52px; align-items: start; }
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--ivory-warm);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--ivory-deep);
}
.sidebar-card h4 { color: var(--text-dark); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1.5px solid var(--ivory-deep); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { color: var(--text-medium); font-size: 0.9rem; padding: 6px 0; border-bottom: 1px solid var(--ivory-deep); transition: var(--transition); }
.sidebar-links a:hover { color: var(--teal); padding-left: 4px; }
.sidebar-links a:last-child { border-bottom: none; }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  display: inline-block;
  background: var(--teal-ultra);
  color: var(--teal);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid var(--teal-pale);
  transition: var(--transition);
}
.tag:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }


/* Seção de estatísticas da sub-page */
.section-narrow { padding: 76px 0; }
.section-narrow .container { max-width: 980px; }
.stat-block { background: var(--white); border: 1px solid var(--ivory-deep); }

/* ── Acessibilidade ──────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Animações ───────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
.fade-in-up { animation: fadeInUp 0.7s ease forwards; }

/* ── Responsivo 1024px ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner        { gap: 44px; }
  .about-grid        { gap: 52px; }
  .approach-grid     { gap: 52px; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .process-steps     { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout       { grid-template-columns: 1fr; }
  .blog-sidebar      { position: static; }
  .contact-grid      { gap: 44px; }
  .page-hero .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .page-hero .hero-copy { margin: 0 auto; }
  .page-hero .hero-image { order: -1; }
  .content-grid, .grid-3, .service-list { grid-template-columns: 1fr; }
  .content-grid.reverse > *:first-child { order: 0; }
  .contact-panel-inner { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}

/* ── Responsivo 768px ────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: calc(100vh - var(--nav-height));
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 32px;
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { font-size: 1.1rem; padding: 13px 32px; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; z-index: 1001; background: rgba(250,250,245,0.98); }

  /* Dropdown no mobile: começa oculto, abre com a classe .dropdown-open */
  .nav-menu .has-dropdown .dropdown-menu {
    display: none;
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px;
    min-width: auto;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
  .nav-menu .has-dropdown.dropdown-open .dropdown-menu { display: block; }
  .nav-menu .dropdown-menu::before { display: none; }
  .nav-menu .dropdown-menu a {
    background: var(--ivory-warm);
    border-radius: 10px;
    margin-bottom: 6px;
    padding: 12px 18px;
    font-size: 1rem;
  }
  .nav-cta { margin-left: 0; width: auto; }

  .hero-inner    { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero::before, .hero::after { display: none; }
  .hero          { min-height: auto; padding: 52px 0 68px; }
  .hero-img-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-img-deco { display: none; }
  .hero-text     { margin: 0 auto 32px; }
  .hero-actions  { justify-content: center; }
  .hero-trust    { justify-content: center; }
  .hero-img-badge { left: 50%; transform: translateX(-50%); bottom: -24px; }

  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { right: 16px; }
  .approach-grid { grid-template-columns: 1fr; gap: 44px; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 30px 22px; }
  .section       { padding: 64px 0; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .quote-section::before { display: none; }
  .stat-card::after { display: none; }
  .stats-grid .stat-card { padding: 28px 16px; }


}

/* ── Responsivo 480px ────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-actions     { flex-direction: column; align-items: center; }
  .btn              { padding: 13px 26px; font-size: 0.94rem; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .whatsapp-float   { padding: 12px 17px; font-size: 0.82rem; }
  .article-author-box { flex-direction: column; }
  .hero-img-wrap    { max-width: 320px; }
}
