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

:root {
  --gold: #E8A800;
  --gold-light: #F5C842;
  --gold-pale: #FFF3CC;
  --cream: #FFFBF0;
  --cream2: #FFF8E1;
  --amber: #F0A500;
  --warm-white: #FFFDF5;
  --text-dark: #3A2A00;
  --text-mid: #6B5000;
  --text-soft: #9B7B30;
  --btn-bg: #E8A800;
  --btn-hover: #D49200;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,248,220,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold-light);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 24px rgba(232,168,0,0.15);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 46px; height: 46px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: #2A1A00;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4A2E00;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: #E8A800;
  border-bottom-color: #E8A800;
}
.nav-cta {
  background: var(--gold) !important;
  /* Texto escuro em vez de branco: branco sobre --gold dava só 2.09:1 de
     contraste (reprovado pelo Lighthouse), var(--text-dark) dá 6.64:1. */
  color: var(--text-dark) !important;
  padding: 9px 22px !important;
  border-radius: 30px !important;
  border-bottom: none !important;
  transition: background 0.25s !important;
  letter-spacing: 0.8px !important;
}
.nav-cta:hover { background: var(--btn-hover) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF3CC 0%, #FFE082 40%, #FFD740 70%, #FFC107 100%);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  padding: 100px 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-left { z-index: 2; }
.hero-eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  display: block;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
/* Palavra em destaque: texto branco puro sobre o gradiente do hero reprovava
   contraste (chega a 1.1:1 em alguns pontos do gradiente). Em vez de mudar
   a cor do texto, aplicamos um "chip" com fundo sólido escuro por trás da
   palavra — o branco sobre var(--text-dark) dá ~13,9:1 de contraste,
   independente de qual trecho do gradiente fica atrás. */
.hero-title span {
  color: #fff;
  background: var(--text-dark);
  padding: 2px 14px;
  border-radius: 10px;
  display: inline-block;
  line-height: 1.3;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-badges { display: flex; gap: 16px; margin-bottom: 36px; }
.badge {
  background: rgba(255,255,255,0.75);
  border: 2px solid rgba(232,168,0,0.4);
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.badge-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 3px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text-dark); color: #fff;
  font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 40px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(58,42,0,0.25);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,168,0,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  /* Texto escuro (var(--text-dark), 6.64:1) em vez de branco (2.09:1) sobre
     var(--gold) — mesmo motivo do .nav-cta. */
  background: var(--gold); color: var(--text-dark);
  font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 40px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(232,168,0,0.3);
}
.btn-secondary:hover { background: var(--btn-hover); transform: translateY(-2px); }

/* ─── HERO RIGHT ─── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  min-height: 640px;
}
.hero-photo-wrap {
  position: absolute;
  bottom: 0;
  width: 620px;
  height: 760px;
}

/* Arch background shape */
.hero-photo-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 660px;
  background: rgba(255,255,255,0.35);
  border-radius: 200px 200px 0 0;
  backdrop-filter: blur(4px);
  overflow: hidden;
}
.hero-photo-bg img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-1%);
  width: 540px;
  height: 640px;
  object-fit: cover;
  object-position: top center;
  border-radius: 180px 180px 0 0;
}

/* ─── SECTION COMMON ─── */
section { position: relative; overflow: hidden; }
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 80px 40px; }
.section-eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem; color: var(--gold);
  display: block; text-align: center; margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--text-dark);
  text-align: center; margin-bottom: 16px;
}
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 4px;
  margin: 0 auto 48px;
}

/* ─── SERVICES ─── */
#servicos { background: var(--warm-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #fff; border-radius: 20px; padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(232,168,0,0.15);
  box-shadow: 0 4px 30px rgba(232,168,0,0.08);
  transition: all 0.35s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0); transition: transform 0.35s; transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(232,168,0,0.18); border-color: rgba(232,168,0,0.35); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; background: var(--gold-pale); border-radius: 50%;
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.service-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; }
.service-desc { font-size: 0.88rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 24px; }
.service-link {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 2px solid var(--gold-light); padding-bottom: 3px; transition: all 0.25s;
}
.service-link:hover { color: var(--btn-hover); border-color: var(--btn-hover); }

/* ─── SOBRE ─── */
#sobre { background: var(--cream2); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: center; }
.sobre-photo { position: relative; }
.sobre-photo-frame {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #FFE082, #FFC107);
  border-radius: 120px 120px 20px 20px;
  overflow: hidden;
  border: 4px solid rgba(232,168,0,0.3);
}
.sobre-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.sobre-photo-badge {
  position: absolute; bottom: -16px; right: -16px;
  /* Idem: var(--text-dark) em vez de branco para contraste suficiente. */
  background: var(--gold); color: var(--text-dark); border-radius: 16px;
  padding: 14px 20px;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  text-align: center; box-shadow: 0 8px 24px rgba(232,168,0,0.4); line-height: 1.2;
}
.sobre-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 24px; }
.especialidades-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.especialidades-title::before { content: ''; display: block; width: 4px; height: 24px; background: var(--gold); border-radius: 4px; }
.espec-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 20px; margin-bottom: 28px;
}
.espec-list li { font-size: 0.88rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.espec-list li::before { content: '◆'; color: var(--gold); font-size: 0.55rem; flex-shrink: 0; }

/* ─── ATENDIMENTO ─── */
#atendimento { background: var(--warm-white); }
.atendimento-content { max-width: 820px; margin: 0 auto; text-align: center; }
.atendimento-text { font-size: 0.97rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 48px; }
.atendimento-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.info-card {
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid rgba(232,168,0,0.25);
  border-radius: 16px; padding: 28px 24px; text-align: left; transition: all 0.3s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(232,168,0,0.15); }
.info-card-icon { font-size: 2rem; margin-bottom: 12px; display: block; text-align: center; }
.info-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; text-align: center; }
.info-card-text { font-size: 0.82rem; color: var(--text-soft); line-height: 1.65; text-align: left; }
.info-card-lines { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; text-align: left; }
.info-card-line { font-size: 0.84rem; color: var(--text-mid); line-height: 1.5; }
.info-card-line a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.info-card-line a:hover { color: var(--gold); }
.info-card-links { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; text-align: left; }
.info-card-links li { display: flex; align-items: flex-start; gap: 7px; }
.info-card-links li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; margin-top: 5px; }
.info-card-links li a {
  font-size: 0.84rem; color: var(--text-mid); text-decoration: none;
  font-weight: 600; line-height: 1.45;
  transition: color 0.2s;
}
.info-card-links li a:hover { color: var(--gold); }
.info-card-more {
  display: inline-block; margin-top: 12px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  border-bottom: 2px solid var(--gold-light); padding-bottom: 2px;
  transition: all 0.2s;
}
.info-card-more:hover { color: var(--btn-hover); border-color: var(--btn-hover); }

/* ─── PSICOLOGIA ─── */
#psicologia { background: linear-gradient(135deg, #3A2A00 0%, #5A4200 50%, #3A2A00 100%); color: #fff; }
#psicologia .section-title { color: #fff; }
#psicologia .section-eyebrow { color: var(--gold-light); }
.psicologia-text { max-width: 780px; margin: 0 auto 48px; text-align: center; font-size: 0.97rem; color: rgba(255,255,255,0.82); line-height: 1.85; }

/* ─── PSICOLOGIA SLIDER ─── */
.psic-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.psic-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.psic-slide {
  flex-shrink: 0;
  /* width set by JS in px */
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background 0.3s;
  box-sizing: border-box;
}
.psic-slide:hover { background: rgba(255,255,255,0.14); }
.psic-card-photo {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(232,168,0,0.3), rgba(240,122,48,0.2));
  border-radius: 12px; margin-bottom: 16px; overflow: hidden;
}
.psic-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.psic-card-label {
  font-family: 'Lato', sans-serif; font-size: 0.85rem;
  color: var(--gold-light); font-weight: 700; letter-spacing: 0.5px;
}
.psic-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 28px;
}
.psic-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.psic-dot.active { background: var(--gold-light); width: 28px; border-radius: 6px; }

/* ─── DEPOIMENTOS ─── */
#depoimentos { background: var(--cream2); }
.depo-card {
  background: #fff; border-radius: 20px; padding: 32px 28px;
  border: 1px solid rgba(232,168,0,0.12);
  box-shadow: 0 4px 24px rgba(232,168,0,0.06);
  transition: all 0.3s;
  display: flex; flex-direction: column;
  height: 100%; box-sizing: border-box;
}
.depo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(232,168,0,0.14); }
.depo-quote { font-size: 3rem; color: var(--gold-light); line-height: 1; font-family: 'Playfair Display', serif; margin-bottom: 12px; }
.depo-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 20px; flex: 1; }
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-avatar { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; font-family: 'Lato', sans-serif; color: var(--text-dark); border: 2px solid var(--gold-light); flex-shrink: 0; }
.depo-name { font-family: 'Playfair Display', serif; font-size: 0.92rem; font-weight: 600; color: var(--text-dark); }
.depo-stars { font-size: 0.7rem; color: var(--gold); }
.depo-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(232,168,0,0.14);
}
.depo-time { font-size: 0.74rem; color: var(--text-soft); }
.depo-source {
  font-size: 0.74rem; font-weight: 700; color: var(--gold);
  text-decoration: none; transition: color 0.2s;
}
.depo-source:hover { color: var(--btn-hover); }

/* ─── DEPOIMENTOS SLIDER (grupos de 3) ─── */
.depo-slider-outer { width: 100%; }
.depo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 4px 24px;
  margin: -8px -4px -24px;
}
.depo-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.depo-page {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 32px;
}
.depo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(232,168,0,0.25); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.depo-dot.active { background: var(--gold); width: 28px; border-radius: 6px; }

/* ─── BLOG PREVIEW SECTION ─── */
#blog-preview { background: var(--cream2); }
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-preview-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(232,168,0,0.12);
  box-shadow: 0 4px 24px rgba(232,168,0,0.07);
  text-decoration: none; color: inherit; display: block;
  transition: all 0.35s;
}
.blog-preview-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(232,168,0,0.16); }
.blog-preview-thumb {
  width: 100%; aspect-ratio: 16/10;
  position: relative; overflow: hidden;
}
.blog-preview-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-preview-cat {
  position: absolute; top: 14px; left: 14px;
  /* Idem: var(--text-dark) em vez de branco para contraste suficiente. */
  background: var(--gold); color: var(--text-dark);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.blog-preview-body { padding: 22px 24px 26px; }
.blog-preview-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-soft); margin-bottom: 10px;
}
.blog-preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text-dark);
  line-height: 1.4; margin-bottom: 10px;
}
.blog-preview-excerpt {
  font-size: 0.85rem; color: var(--text-soft);
  line-height: 1.7; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-preview-link {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.blog-preview-card:hover .blog-preview-link { gap: 10px; }

/* ─── CONTATO ─── */
#contato { background: var(--warm-white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contato-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 32px; }
.contato-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contato-item { display: flex; align-items: center; gap: 16px; }
.contato-item-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border: 2px solid rgba(232,168,0,0.3); flex-shrink: 0; }
.contato-item-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.contato-item-value { font-size: 0.92rem; color: var(--text-mid); }
.contato-item-value a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.contato-item-value a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; }
/* Social buttons — cores originais de cada rede */
.social-btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.3s; flex-shrink: 0;
}
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.22); filter: brightness(1.1); }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-facebook  { background: #1877F2; }
.social-youtube   { background: #FF0000; }
.social-whatsapp  { background: #25D366; }

/* FORM */
.contato-form {
  background: #fff; border-radius: 24px; padding: 40px;
  border: 1px solid rgba(232,168,0,0.15);
  box-shadow: 0 8px 40px rgba(232,168,0,0.1);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--text-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-soft); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(232,168,0,0.25); border-radius: 12px;
  font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  background: var(--warm-white); outline: none; transition: border-color 0.25s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--gold); color: #fff; border: none; border-radius: 14px;
  font-family: 'Lato', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; margin-top: 8px;
}
.form-submit:hover { background: var(--btn-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,168,0,0.35); }

/* ─── CRB BAR ─── */
.crb-bar {
  background: var(--gold-pale); border-top: 1px solid rgba(232,168,0,0.2);
  padding: 12px 40px; display: flex; justify-content: center;
  align-items: center; gap: 24px; flex-wrap: wrap;
}
.crb-item { font-size: 0.78rem; color: var(--text-soft); font-weight: 700; letter-spacing: 0.5px; }
.crb-item span { color: var(--text-dark); }

/* ─── FOOTER ─── */
footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 48px 40px 32px; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-text { font-family: 'Dancing Script', cursive; font-size: 1.6rem; color: var(--gold-light); }
.footer-nav { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-decoration: none; letter-spacing: 0.5px; transition: color 0.25s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.62); } /* contraste ~6.3:1 sobre --text-dark, atende WCAG AA */
.footer-divider { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 20px auto; }

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); text-decoration: none; transition: all 0.3s;
}
.whatsapp-fab:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* ─── NOTIFICATION ─── */
.notif {
  position: fixed; top: 80px; right: 24px; z-index: 999;
  background: #fff; border-left: 4px solid var(--gold);
  border-radius: 12px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  font-size: 0.88rem; color: var(--text-dark);
  display: none; max-width: 280px;
  animation: slideIn 0.4s ease;
}
.notif.notif-error { border-left-color: #C0392B; }
@keyframes slideIn { from { transform: translateX(320px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── HERO SLIDER ─── */
/* Usa opacity/transform com transition (compositável) em vez de display+animation,
   que forçava a animação a rodar na main thread a cada troca de slide. */
.hero-slider { position: relative; min-height: 180px; margin-bottom: 24px; }
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.hero-slide.active {
  position: relative;
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.hero-dots { display: flex; gap: 10px; margin-bottom: 28px; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(58,42,0,0.25); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.hero-dot.active { background: var(--text-dark); width: 28px; border-radius: 6px; }

/* ─── CONTATO ICONS ROW ─── */
.contato-icons-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  text-align: center;
}
.contato-icon-block { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contato-icon-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(232,168,0,0.3);
}
.contato-icon-block .contato-item-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--gold);
}
.contato-icon-block .contato-item-value {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.4;
}

/* ─── CONTATO CLÍNICA ─── */
.contato-clinica-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.clinica-map-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem; color: var(--gold);
  font-weight: 700; margin-bottom: 12px;
}
.map-link {
  display: inline-block; margin-top: 10px;
  font-size: 0.82rem; font-weight: 700; color: var(--gold);
  text-decoration: none; transition: color 0.2s;
}
.map-link:hover { color: var(--btn-hover); }
.clinica-address-card {
  background: var(--gold-pale);
  border: 1px solid rgba(232,168,0,0.25);
  border-radius: 14px; padding: 20px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.clinica-address-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 4px;
}
.clinica-address-line { font-size: 0.9rem; color: var(--text-mid); }
.clinica-address-note {
  font-size: 0.8rem; color: var(--text-soft);
  font-style: italic; margin-top: 6px;
  padding-top: 8px; border-top: 1px solid rgba(232,168,0,0.2);
}

/* ─── FLOAT DECO ─── */
.float-deco { position: absolute; pointer-events: none; user-select: none; }
.deco-butterfly { position: absolute; opacity: 0.7; animation: flutter 4s ease-in-out infinite; }
@keyframes flutter { 0%, 100% { transform: rotate(-5deg) scale(1); } 50% { transform: rotate(5deg) scale(1.05); } }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {

  /* Hero vira bloco com foto como fundo */
  .hero {
    display: block;
    position: relative;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
  }

  /* Foto ocupa fundo inteiro */
  .hero-right {
    display: block;
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    min-height: unset;
    z-index: 1;
  }
  .hero-photo-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    bottom: auto;
  }
  .hero-photo-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    background: none;
    overflow: hidden;
    left: auto;
    transform: none;
  }
  .hero-photo-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    left: auto;
    transform: none;
  }

  /* Gradiente dourado sobre a foto — texto legível */
  .hero-photo-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(255,224,100,0.72) 0%,
      rgba(255,200,50,0.55) 40%,
      rgba(255,180,0,0.25) 70%,
      transparent 100%
    );
    z-index: 1;
  }

  /* Texto sobre a foto */
  .hero-left {
    position: relative;
    z-index: 3;
    padding: 100px 28px 48px;
    text-align: center;
  }
  .hero-badges { justify-content: center; }
  .hero-left > div:last-child { justify-content: center; }

  /* Decorações pequenas — esconder para não poluir */
  .deco-butterfly { display: none; }
  .float-deco { display: none; }

  .psic-slide { min-width: calc(50% - 12px); }
  .contato-icons-row { grid-template-columns: repeat(2, 1fr); }
  .contato-clinica-grid { grid-template-columns: 1fr; }

  .services-grid, .atendimento-cards, .blog-preview-grid { grid-template-columns: 1fr; }
  .depo-page { grid-template-columns: 1fr; gap: 20px; }
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .espec-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .psic-slide { min-width: 100%; }
  .contato-icons-row { grid-template-columns: repeat(2, 1fr); }
}