/* ============================================================
   cesarcoutinho.com.br — Identidade Visual Premium
   Paleta: Azul Petróleo · Verde Sálvia · Dourado · Off-White · Grafite
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Cores principais */
  --petrol:       #163A46;   /* Azul Petróleo Profundo */
  --petrol-dark:  #0F2830;
  --petrol-mid:   #1E4E5F;
  --petrol-light: #E8EEF0;
  --sage:         #7F9C8C;   /* Verde Sálvia */
  --sage-dark:    #5E7A6B;
  --sage-light:   #EBF1EE;
  --gold:         #C8A977;   /* Dourado Suave */
  --gold-dark:    #A8894A;
  --gold-light:   #F5ECD9;
  --bg:           #F8F6F2;   /* Off White */
  --bg-white:     #FFFFFF;
  --text:         #2B2B2B;   /* Grafite */
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --border:       #E4E0D8;
  --border-light: #EDE9E3;
  --success:      #4A8C6F;
  --danger:       #C0392B;

  /* Aliases semânticos */
  --primary:      var(--petrol);
  --primary-dark: var(--petrol-dark);
  --primary-light:var(--petrol-light);
  --accent:       var(--gold);

  /* Espaçamento & forma */
  --radius:    14px;
  --radius-sm: 8px;
  --radius-xs: 5px;
  --shadow-sm: 0 2px 10px rgba(22,58,70,.06);
  --shadow:    0 6px 30px rgba(22,58,70,.10);
  --shadow-lg: 0 16px 50px rgba(22,58,70,.16);
  --transition:.28s ease;
  --header-h:  76px;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
}

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

/* ── Container ────────────────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 820px; }

/* ── Botões ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}
/* Botão primário — Azul Petróleo */
.btn-primary {
  background: var(--petrol);
  color: #fff;
  border-color: var(--petrol);
}
.btn-primary:hover {
  background: var(--petrol-dark);
  border-color: var(--petrol-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
/* Botão CTA — Dourado Premium */
.btn-cta, .btn-gold {
  background: var(--gold);
  color: var(--petrol-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-cta:hover, .btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,119,.35);
}
/* Botão outline */
.btn-outline {
  background: transparent;
  color: var(--petrol);
  border-color: var(--petrol);
}
.btn-outline:hover {
  background: var(--petrol);
  color: #fff;
  transform: translateY(-2px);
}
/* Botão outline branco (sobre fundos escuros) */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}
/* WhatsApp */
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1EBD5A; color: #fff; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-sm     { padding: .45rem 1.1rem; font-size: .85rem; }
.btn-lg     { padding: 1rem 2.4rem; font-size: 1.05rem; letter-spacing: .02em; }
.btn-full   { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── Tipografia ───────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--petrol);
  text-align: center;
  margin-bottom: .6rem;
  letter-spacing: -.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
/* Linha decorativa dourada sob títulos de seção */
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: .75rem auto 0;
}
.prose { line-height: 1.9; color: var(--text); }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 1rem; color: var(--petrol); }
.prose h3 { font-size: 1.2rem; font-weight: 600; margin: 1.5rem 0 .75rem; color: var(--petrol-mid); }
.prose p  { margin-bottom: 1.3rem; }
.prose ul, .prose ol { margin: 1rem 0 1.3rem 1.5rem; }
.prose li { margin-bottom: .5rem; }
.prose strong { font-weight: 600; color: var(--petrol); }
.prose a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.empty-state { text-align: center; color: var(--text-muted); padding: 3rem; font-size: 1.05rem; }

/* ── Animate-up ───────────────────────────────────────────── */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.animate-up.visible { opacity: 1; transform: translateY(0); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: var(--petrol);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(22,58,70,.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
}
.brand-text em {
  display: block;
  font-style: normal;
  font-size: .72rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: -2px;
}
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-weight: 500;
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: .01em;
}
.nav-link:hover { color: #fff; }
.nav-cta {
  background: var(--gold);
  color: var(--petrol-dark) !important;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,169,119,.4);
}
/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,40,48,.55);
  z-index: 1001;
  backdrop-filter: blur(2px);
}
.mobile-overlay.active { display: block; }
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--petrol-dark);
  z-index: 1002;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition);
  box-shadow: -6px 0 40px rgba(0,0,0,.25);
}
.mobile-nav.active { right: 0; }
.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.mobile-close:hover { color: #fff; }
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: #fff; }
.mobile-nav-cta {
  margin-top: 2rem;
  background: var(--gold);
  color: var(--petrol-dark) !important;
  padding: .9rem 1.5rem;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  border-bottom: none;
}

#main-content { padding-top: var(--header-h); }

/* ── Hero Swiper ─────────────────────────────────────────── */
.hero-swiper {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
}

/* ── Slide base ─────────────────────────────────────── */
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background-size: cover;
  background-color: var(--petrol-dark);
  /* background-position set per-slide via inline style */
}

/* ── Bloco de texto: posição horizontal por classe ──── */
.hero-slide.pos-left   { justify-content: flex-start; }
.hero-slide.pos-right  { justify-content: flex-end;   }
.hero-slide.pos-center { justify-content: center;     }

/* ── Gradiente adapta-se ao lado do texto ────────────── */
/* Esquerda: escuro na esq, transparente na dir → pessoa visível à dir */
.hero-slide.pos-left .hero-overlay {
  background: linear-gradient(90deg,
    rgba(15,40,48,.97) 0%,
    rgba(15,40,48,.90) 35%,
    rgba(15,40,48,.50) 60%,
    rgba(15,40,48,.08) 100%);
}
/* Direita: transparente na esq → pessoa visível à esq, escuro na dir */
.hero-slide.pos-right .hero-overlay {
  background: linear-gradient(270deg,
    rgba(15,40,48,.97) 0%,
    rgba(15,40,48,.90) 35%,
    rgba(15,40,48,.50) 60%,
    rgba(15,40,48,.08) 100%);
}
/* Centro: escuro uniformemente */
.hero-slide.pos-center .hero-overlay {
  background: rgba(15,40,48,.72);
}

.hero-overlay {
  position: absolute;
  inset: 0;
}
/* Linha dourada inferior */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}

/* ── Bloco de conteúdo ─────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  width: 48%;
  max-width: 600px;       /* impede texto de vazar além do bloco */
  min-width: 280px;
  color: #fff;
  overflow: hidden;       /* texto não escapa do bloco */
  word-break: break-word;
}

/* Localização horizontal do bloco */
.hero-slide.pos-left   .hero-content { padding: 0 2rem 0 5vw; }
.hero-slide.pos-right  .hero-content { padding: 0 5vw 0 2rem; }
.hero-slide.pos-center .hero-content { width: 72%; max-width: 780px; padding: 0 2rem; }

/* Alinhamento do texto dentro do bloco */
.hero-content.align-left   { text-align: left; }
.hero-content.align-center { text-align: center; }
.hero-content.align-right  { text-align: right; }

/* Botões seguem alinhamento */
.hero-content.align-left   .hero-btns { justify-content: flex-start; }
.hero-content.align-center .hero-btns { justify-content: center; }
.hero-content.align-right  .hero-btns { justify-content: flex-end; }
.hero-content.align-center .hero-subtitle { margin-left: auto; margin-right: auto; }

/* ── Posição vertical do bloco ────────────────────── */
.hero-slide { align-items: center; }          /* padrão = centro */
.hero-slide.valign-top    { align-items: flex-start; padding-top: 4rem; }
.hero-slide.valign-center { align-items: center; }
.hero-slide.valign-bottom { align-items: flex-end; padding-bottom: 4rem; }

/* Mobile: full width, forçar esquerda */
@media (max-width: 768px) {
  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset;
    padding: 0 1.5rem !important;
    text-align: left !important;
  }
  .hero-content .hero-btns { justify-content: flex-start !important; }
  .hero-slide { justify-content: flex-start !important; align-items: flex-end !important; padding-bottom: 3rem !important; }
  .hero-slide .hero-overlay {
    background: linear-gradient(90deg,
      rgba(15,40,48,.95) 0%,
      rgba(15,40,48,.80) 50%,
      rgba(15,40,48,.40) 100%) !important;
  }
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  opacity: .88;
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-slide.pos-center .hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-slide.pos-right  .hero-btns { justify-content: flex-end; }
.hero-slide.pos-center .hero-btns { justify-content: center; }
/* ── Hero nav buttons ──────────────────────────────── */
.swiper-button-prev.hero-nav-btn,
.swiper-button-next.hero-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  cursor: pointer;
  transition: background .2s, transform .2s;
  /* override Swiper defaults */
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.swiper-button-prev.hero-nav-btn { left: 12px; right: auto; }
.swiper-button-next.hero-nav-btn { right: 12px; left: auto; }
.swiper-button-prev.hero-nav-btn:hover,
.swiper-button-next.hero-nav-btn:hover {
  background: rgba(200,169,119,.35);
  transform: translateY(-50%) scale(1.08);
}
/* hide Swiper's default ::after arrows */
.swiper-button-prev.hero-nav-btn::after,
.swiper-button-next.hero-nav-btn::after { display: none; }
.swiper-pagination-bullet { background: rgba(255,255,255,.5) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--petrol-dark) 0%, var(--petrol) 100%);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
}
.page-hero-title {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 800;
  margin-bottom: .75rem;
  letter-spacing: -.03em;
}
.page-hero-desc {
  font-size: 1.08rem;
  opacity: .82;
  max-width: 580px;
  line-height: 1.75;
}

/* ── Credentials Bar ─────────────────────────────────────── */
.credentials-bar {
  background: var(--petrol-dark);
  padding: 2.25rem 0;
  border-bottom: 2px solid rgba(200,169,119,.2);
}
.credentials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3.5rem;
}
.credential-item {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.credential-icon, .credential-item svg.lucide {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  stroke-width: 1.75;
  fill: none;
  margin-bottom: .2rem;
}
.credential-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .01em;
}
.credential-label {
  font-size: .75rem;
  opacity: .65;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.8);
}

/* ── Treatments Grid ─────────────────────────────────────── */
.treatments-section, .treatments-list-section {
  padding: 5.5rem 0;
  background: var(--bg);
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 1.5rem;
}
.treatment-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
/* Detalhe sálvia na borda esquerda */
.treatment-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--sage);
  transform: scaleY(0);
  transition: transform var(--transition);
  border-radius: var(--radius) 0 0 var(--radius);
}
.treatment-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.treatment-card:hover::before { transform: scaleY(1); }
.treatment-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}
.treatment-icon i[data-lucide],
.treatment-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--sage);
  stroke-width: 1.75;
  fill: none;
}
.treatment-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.3;
}
.treatment-excerpt {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.treatment-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.treatment-card:hover .treatment-link { gap: .6rem; }

/* ── About CTA ───────────────────────────────────────────── */
.about-cta {
  padding: 5.5rem 0;
  background: var(--petrol-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
  line-height: 1.25;
}
/* Linha decorativa dourada */
.about-cta-text h2::after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: .8rem;
}
.about-cta-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.85;
}
.about-cta-img { display: flex; justify-content: center; }
.about-placeholder {
  width: 300px;
  height: 340px;
  background: var(--bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  border: 2px dashed var(--border);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section {
  padding: 5.5rem 0;
  background: var(--petrol);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-title::after { background: var(--gold); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.65); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(200,169,119,.35);
  transform: translateY(-3px);
}
.testimonial-stars {
  font-size: .95rem;
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  opacity: .88;
  font-style: italic;
}
.testimonial-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 5.5rem 0; background: var(--bg-white); }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: .97rem;
  font-weight: 600;
  color: var(--petrol);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sage-dark); }
.faq-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--sage);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; }
.faq-answer.open { display: block; }
.faq-answer-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: .95rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

/* ── CTA Final ────────────────────────────────────────────── */
.cta-final {
  padding: 5.5rem 0;
  background: var(--petrol-dark);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
/* Ornamento geométrico sutil */
.cta-final::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,119,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner { text-align: center; color: #fff; position: relative; z-index: 1; }
.cta-final-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.cta-final-inner p { opacity: .75; margin-bottom: 2.25rem; font-size: 1.05rem; line-height: 1.7; }

/* ── Treatment Detail ────────────────────────────────────── */
.treatment-detail { padding: 4.5rem 0; }
.treatment-detail-body { max-width: 760px; }
.treatment-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.85;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.treatment-cta-inline { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* ── Blog ────────────────────────────────────────────────── */
.blog-section { padding: 4.5rem 0; background: var(--bg); }
.blog-categories { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 3rem; }
.cat-filter {
  padding: .45rem 1.15rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
  background: var(--bg-white);
}
.cat-filter:hover, .cat-filter.active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}
.blog-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; gap: .6rem; }
.blog-card-cat {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; color: var(--petrol); }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--sage-dark); }
.blog-card-excerpt { font-size: .9rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-card-meta { font-size: .8rem; color: var(--text-light); display: flex; gap: .5rem; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--border-light); }

/* Paginação */
.pagination { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.page-num, .page-prev, .page-next {
  padding: .55rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--bg-white);
  transition: all var(--transition);
}
.page-num.active { background: var(--petrol); border-color: var(--petrol); color: #fff; }
.page-num:hover, .page-prev:hover, .page-next:hover { border-color: var(--sage); color: var(--sage-dark); }

/* ── Blog Single ─────────────────────────────────────────── */
.blog-single { padding: 3.5rem 0 5.5rem; }
.blog-single-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; font-size: .88rem; color: var(--text-muted); flex-wrap: wrap; }
.blog-single-title { font-size: clamp(1.7rem, 4.5vw, 2.5rem); font-weight: 800; line-height: 1.18; margin-bottom: 2rem; color: var(--petrol); letter-spacing: -.03em; }
.blog-featured-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem; }
.blog-featured-img img { width: 100%; max-height: 440px; object-fit: cover; }
.blog-single-content { margin-bottom: 2.5rem; }
.blog-intro {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.3rem;
}
.blog-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.blog-tag {
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}
.blog-cta {
  background: var(--petrol-light);
  border-radius: var(--radius);
  padding: 2.25rem;
  text-align: center;
  border: 1.5px solid var(--border);
  margin-top: 2.5rem;
}
.blog-cta h3 { margin-bottom: .5rem; color: var(--petrol); }
.blog-cta p { color: var(--text-muted); margin-bottom: 1.4rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-section { padding: 4.5rem 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 1.7rem; font-weight: 700; color: var(--petrol); margin-bottom: .75rem; }
.contact-info h2::after { content: ''; display: block; width: 36px; height: 3px; background: var(--gold); border-radius: 2px; margin-top: .7rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.8; }
.contact-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text);
  padding: .75rem 0;
  font-size: .97rem;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--sage-dark); }
.contact-wa { color: #25D366; font-weight: 600; }
.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--petrol); }
.form-group input, .form-group textarea, .form-group select {
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .97rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(127,156,140,.15);
}
.form-check label { display: flex; align-items: flex-start; gap: .6rem; font-weight: 400; font-size: .88rem; cursor: pointer; color: var(--text-muted); }
.form-check input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--sage); }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-weight: 500; font-size: .9rem; }
.alert-success { background: #D6EBE0; color: #1E6644; border-left: 3px solid var(--success); }
.alert-error   { background: #FAE2E2; color: #8B2222; border-left: 3px solid var(--danger); }

/* ── Professional ────────────────────────────────────────── */
.professional-page { padding: 4.5rem 0; }
.professional-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4.5rem; align-items: start; }
.professional-avatar-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--petrol-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  border: 2px dashed var(--border);
}
.professional-bio h2 { font-size: 1.9rem; font-weight: 700; color: var(--petrol); margin-bottom: 1.25rem; letter-spacing: -.02em; }
.professional-bio h2::after { content: ''; display: block; width: 42px; height: 3px; background: var(--gold); border-radius: 2px; margin-top: .75rem; }
.credentials-list { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0; }
.credential-badge {
  background: var(--petrol-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .9rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transition: border-color var(--transition);
}
.credential-badge:hover { border-color: var(--sage); }
.credential-badge strong { font-size: 1rem; font-weight: 700; color: var(--petrol); }
.credential-badge span { font-size: .77rem; color: var(--text-muted); }
.professional-cta { margin-top: 2.25rem; }

/* ── Page sections ───────────────────────────────────────── */
.page-content { padding: 4.5rem 0; }
.page-section { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 4.5rem; padding-bottom: 4.5rem; border-bottom: 1px solid var(--border-light); }
.page-section:last-child { border-bottom: none; margin-bottom: 0; }
.page-section.img-left, .page-section.img-right { grid-template-columns: 1fr 1fr; align-items: center; }
.page-section.img-right .section-figure { order: 2; }
.section-h2 { font-size: 1.65rem; font-weight: 700; color: var(--petrol); margin-bottom: 1rem; }
.section-figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.section-figure img { width: 100%; height: 300px; object-fit: cover; }
.section-figure figcaption { font-size: .8rem; color: var(--text-muted); padding: .5rem; text-align: center; }
.legal-page { padding: 4rem 0; }

/* ── 404 ──────────────────────────────────────────────────── */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--petrol);
  color: rgba(255,255,255,.75);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--petrol-mid);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-logo { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.footer-crp { font-size: .78rem; color: var(--gold); margin-bottom: .75rem; font-weight: 500; letter-spacing: .05em; }
.footer-desc { font-size: .88rem; line-height: 1.75; opacity: .65; }
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(200,169,119,.2);
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: .88rem; margin-bottom: .5rem; }
.footer-contact a { color: rgba(255,255,255,.65); text-decoration: none; transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .btn-whatsapp { display: inline-flex; margin-top: 1.25rem; font-size: .85rem; padding: .5rem 1.2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.75rem;
  font-size: .8rem;
  opacity: .45;
  text-align: center;
}
.footer-bottom a { color: inherit; }

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); color: #fff; }

/* ── Cookie Banner ────────────────────────────────────────── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  max-width: 400px;
  background: var(--petrol-dark);
  color: rgba(255,255,255,.88);
  border-radius: var(--radius);
  padding: 1.4rem 1.75rem;
  align-items: center;
  gap: 1.25rem;
  z-index: 998;
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--gold);
}
.cookie-banner p { font-size: .86rem; line-height: 1.65; flex: 1; }
.cookie-banner a { color: var(--gold); }
.cookie-banner .btn-sm { flex-shrink: 0; }

/* ── Blog related / section ──────────────────────────────── */
.related-section { padding: 4.5rem 0; background: var(--bg); }
.blog-grid-related { margin-top: 1.5rem; }

/* ── Utilities ───────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-sage { background: var(--sage-light); color: var(--sage-dark); }
.badge-gold { background: var(--gold-light); color: var(--gold-dark); }
.badge-petrol { background: var(--petrol-light); color: var(--petrol); }

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-cta-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .professional-inner { grid-template-columns: 1fr; }
  .professional-avatar-placeholder { max-width: 280px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-swiper { height: 72vh; min-height: 440px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .treatments-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .page-section.img-left, .page-section.img-right { grid-template-columns: 1fr; }
  .section-figure { order: -1 !important; }
  .cookie-banner { left: .75rem; right: .75rem; max-width: none; }
  .credentials-grid { gap: 1.25rem 2rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .section-title::after { margin: .6rem auto 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .btn-lg { padding: .85rem 1.8rem; font-size: 1rem; }
}
