/* ==========================================================================
   style.css — Viviane Cancian Psicopedagogia
   Stack: Bootstrap 5 + Google Fonts (Playfair Display + Lato)
   Paleta: Navy #001F3F · Gold #D4AF37 · Mint #98FB98 · Beige #F5DEB3 · Pink #FADADD
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. DESIGN TOKENS (CSS Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  /* Cores principais */
  --navy:       #001F3F;
  --gold:       #D4AF37;
  --gold-dark:  #b8941e;   /* gold escurecida 10% para hover */
  --mint:       #98FB98;
  --beige:      #F5DEB3;
  --pink:       #FADADD;

  /* Cores auxiliares */
  --white:      #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-text:  #555555;
  --body-text:  #333333;
  --slate-600:  #475569;
  --border:     rgba(0, 31, 63, 0.08);

  /* Fundos suaves de seção */
  --bg-beige-soft: rgba(245, 222, 179, 0.20);
  --bg-pink-soft:  rgba(250, 218, 221, 0.20);
  --bg-pink-faq:   rgba(250, 218, 221, 0.12);

  /* Tipografia */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', 'Open Sans', Calibri, Arial, sans-serif;

  /* Espaçamentos de seção */
  --section-py: 6rem;       /* 96px */
  --section-py-sm: 4rem;    /* 64px */

  /* Raios de borda */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-card:  0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg:    0 12px 40px rgba(0, 0, 0, 0.15);

  /* Transições */
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}


/* --------------------------------------------------------------------------
   1. BASE E TIPOGRAFIA
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
h3 { font-family: var(--font-sans); font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--slate-600); }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-dark); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Âncoras com offset para o header sticky */
[id] {
  scroll-margin-top: 80px;
}


/* --------------------------------------------------------------------------
   2. UTILITÁRIOS DE SEÇÃO
   -------------------------------------------------------------------------- */
.section-py     { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-py-sm  { padding-top: var(--section-py-sm); padding-bottom: var(--section-py-sm); }

.bg-navy        { background-color: var(--navy) !important; }
.bg-beige-soft  { background-color: var(--bg-beige-soft) !important; }
.bg-pink-soft   { background-color: var(--bg-pink-soft) !important; }
.bg-pink-faq    { background-color: var(--bg-pink-faq) !important; }
.bg-gray-light  { background-color: var(--gray-light) !important; }

.text-navy      { color: var(--navy) !important; }
.text-gold      { color: var(--gold) !important; }
.text-gray      { color: var(--gray-text) !important; }
.text-white     { color: var(--white) !important; }

/* Divisor decorativo dourado abaixo de títulos de seção */
.section-divider {
  width: 56px;
  height: 3px;
  background-color: var(--gold);
  border: none;
  margin: 0.75rem auto 0;
  border-radius: var(--radius-full);
}
.section-divider--left { margin-left: 0; }

/* Label de seção (supratítulo em ouro) */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}


/* --------------------------------------------------------------------------
   3. BOTÕES
   -------------------------------------------------------------------------- */

/* Primário — fundo Gold, texto Navy */
.btn-cta-primary {
  background-color: var(--gold);
  color: var(--navy) !important;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.30);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-cta-primary:hover,
.btn-cta-primary:focus-visible {
  background-color: var(--gold-dark);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.40);
  text-decoration: none;
}
.btn-cta-primary:active {
  transform: translateY(0);
}

/* Primário grande — hero / CTA final */
.btn-cta-primary--lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
}

/* Secundário — transparente, borda Navy */
.btn-cta-secondary {
  background-color: transparent;
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  padding: 0.8125rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-cta-secondary:hover,
.btn-cta-secondary:focus-visible {
  background-color: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Botão ghost (em fundo escuro) */
.btn-cta-ghost {
  background-color: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.8125rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-cta-ghost:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Link de texto com underline dourado */
.link-underline-gold {
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.link-underline-gold:hover { color: var(--gold); }


/* --------------------------------------------------------------------------
   4. CARDS PADRÃO
   -------------------------------------------------------------------------- */
.card-custom {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-custom:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Card com borda top dourada (Diferenciais) */
.card-border-top {
  border-top: 4px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Card de indicação (8 cards "Quando procurar") */
.card-indicacao {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,31,63,0.06);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.card-indicacao:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-indicacao .card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.card-indicacao h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.card-indicacao p {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin: 0;
}

/* Card de serviço */
.card-servico {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-servico:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-servico .service-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.card-servico h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.card-servico p {
  font-size: 0.875rem;
  color: var(--gray-text);
  flex: 1;
}
.card-servico .service-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 1.25rem;
  transition: gap var(--transition), color var(--transition);
}
.card-servico .service-link:hover {
  gap: 8px;
  color: var(--gold-dark);
}

/* Card de depoimento */
.card-depoimento {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(250, 218, 221, 0.3);
  position: relative;
  transition: box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-depoimento:hover {
  box-shadow: var(--shadow-hover);
}
.card-depoimento .quote-icon {
  position: absolute;
  top: -16px;
  left: 1.5rem;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.card-depoimento blockquote {
  font-style: italic;
  color: var(--slate-600);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  flex: 1;
  padding: 0;
  border: none;
}
.card-depoimento .depoimento-autor {
  border-top: 1px solid #f0f0f0;
  padding-top: 1.25rem;
}
.card-depoimento .autor-nome {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9375rem;
  margin: 0;
}
.card-depoimento .autor-relacao {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}


/* --------------------------------------------------------------------------
   5. LOGO
   -------------------------------------------------------------------------- */
.logo-monogram {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-monogram--lg { font-size: 2.5rem; }

.logo-divider {
  display: block;
  width: 1px;
  height: 2rem;
  background-color: rgba(0, 31, 63, 0.2);
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
}

/* Logo versão clara (para fundo Navy — footer, mobile menu) */
.logo-monogram--light { color: var(--gold); }
.logo-name--light     { color: var(--white); }
.logo-divider--light  { background-color: rgba(255,255,255,0.3); }


/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.site-header {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 31, 63, 0.06);
  transition: background-color var(--transition-slow), box-shadow var(--transition-slow);
  z-index: 1030;
  height: 72px;
  display: flex;
  align-items: center;
}

/* Header fixo ao scroll */
.site-header.scrolled {
  background-color: var(--navy);
  border-bottom-color: transparent;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Inverte cores do logo ao scrollar */
.site-header.scrolled .logo-name  { color: var(--white); }
.site-header.scrolled .logo-divider { background-color: rgba(255,255,255,0.3); }

/* Links do nav desktop */
.nav-link-custom {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy) !important;
  padding: 0.5rem 0.625rem;
  position: relative;
  transition: color var(--transition);
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.625rem;
  right: 0.625rem;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: var(--radius-full);
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--gold) !important;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

/* Nav links quando header está scrolled (fundo Navy) */
.site-header.scrolled .nav-link-custom {
  color: rgba(255,255,255,0.85) !important;
}
.site-header.scrolled .nav-link-custom:hover,
.site-header.scrolled .nav-link-custom.active {
  color: var(--gold) !important;
}

/* Hamburger button */
.navbar-toggler {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background-color: var(--navy);
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color var(--transition-slow);
}
.site-header.scrolled .hamburger-icon span {
  background-color: var(--white);
}
/* Estado aberto */
.hamburger-icon.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-icon.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-icon.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* --------------------------------------------------------------------------
   7. MENU MOBILE OVERLAY
   -------------------------------------------------------------------------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--navy);
  z-index: 1040;
  padding: 2rem 1.75rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.mobile-menu-overlay.is-open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1039;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  align-self: flex-end;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity var(--transition);
  margin-bottom: 2rem;
  z-index: 10;
}
.mobile-menu-close:hover { opacity: 1; }

.mobile-menu-brand {
  display: block;
  margin-bottom: 2.5rem;
}
.mobile-menu-brand img {
  max-width: 180px;
  height: auto;
}

.mobile-menu-overlay .btn-cta-primary {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.mobile-menu-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-link {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--gold) !important;
  padding-left: 0.5rem;
}

.mobile-menu-footer {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Body travado quando menu está aberto */
body.menu-open {
  overflow: hidden;
}


/* --------------------------------------------------------------------------
   8. PLACEHOLDER DE FOTO (dev — substituir por img real)
   -------------------------------------------------------------------------- */
.photo-placeholder {
  background-color: #dde3eb;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9ab5;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  user-select: none;
}
.photo-placeholder--hero {
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 420px;
}
.photo-placeholder--sobre {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 460px;
}

/* Fotos reais — substituem os placeholders */
.photo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.photo-img--hero {
  aspect-ratio: 4/5;
  max-width: 420px;
  border-radius: 16px;
}
.photo-img--sobre {
  aspect-ratio: 3/4;
  max-width: 460px;
  border-radius: 16px;
}

/* Logo no header */
.header-logo {
  width: auto;
  max-width: 200px;
}

/* Logo swap is handled via JavaScript src swap — see main.js */


/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.section-hero {
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy) 55%, #f8f9fa 100%);
  padding-top: calc(72px + 4rem);   /* offset do header sticky */
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  color: var(--gold);
  font-style: italic;
}

.hero-subheadline {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.hero-quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy);
  font-size: 0.9375rem;
  margin: 0;
}


/* --------------------------------------------------------------------------
   10. SEÇÕES DE CONTEÚDO
   -------------------------------------------------------------------------- */

/* Título de seção padrão (centralizado) */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.section-title--left { text-align: left; }

/* Frase de destaque / quote */
.section-highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold);
  background-color: rgba(212,175,55,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Abordagem — pilar (ícone + texto) */
.pilar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pilar-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 2px;
}
.pilar-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}
.pilar-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin: 0;
}

/* Seção atendimento — 3 info cards */
.atendimento-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.atendimento-card .atend-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.atendimento-card h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.atendimento-card p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}


/* --------------------------------------------------------------------------
   11. CARROSSEL DE DEPOIMENTOS (home)
   -------------------------------------------------------------------------- */
.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  background: var(--white);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}
.carousel-nav-btn:hover {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(212,175,55,0.35);
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(212,175,55,0.3);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
  padding: 0;
}
.carousel-dot.active,
.carousel-dot:hover {
  background-color: var(--gold);
  transform: scale(1.3);
}


/* --------------------------------------------------------------------------
   12. SEÇÃO CTA FINAL
   -------------------------------------------------------------------------- */
.section-cta-final {
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}
.section-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.section-cta-final h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}
.section-cta-final p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}


/* --------------------------------------------------------------------------
   13. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212,175,55,0.15);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 0.75rem;
}
.faq-item:last-child { margin-bottom: 0; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.375rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  transition: background-color var(--transition);
}
.faq-question:hover { background-color: rgba(212,175,55,0.04); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.is-open .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin: 0;
}


/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy);
  padding-top: 5rem;
  padding-bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.25rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li { margin-bottom: 0.75rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-nav a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.footer-contact-list li svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--gold); }

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(212,175,55,0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-bottom-sub {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.2) !important;
  margin-top: 0.25rem !important;
}


/* --------------------------------------------------------------------------
   15. BOTÃO FLUTUANTE WHATSAPP
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

/* Anel de pulse */
.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  60%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Label tooltip */
.whatsapp-float__label {
  position: absolute;
  right: calc(100% + 12px);
  background-color: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.whatsapp-float__label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: 0;
  border-left-color: var(--navy);
}
.whatsapp-float:hover .whatsapp-float__label {
  opacity: 1;
  transform: translateX(0);
}


/* --------------------------------------------------------------------------
   16. ANIMAÇÕES DE ENTRADA (IntersectionObserver)
   -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay escalonado para grids */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
.fade-up:nth-child(7) { transition-delay: 0.6s; }
.fade-up:nth-child(8) { transition-delay: 0.7s; }


/* --------------------------------------------------------------------------
   17. PÁGINAS INTERNAS — Hero banner
   -------------------------------------------------------------------------- */
.page-hero {
  background-color: var(--navy);
  padding: calc(72px + 3rem) 0 3.5rem;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto;
}
.page-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }


/* --------------------------------------------------------------------------
   18. OVERRIDES BOOTSTRAP
   -------------------------------------------------------------------------- */

/* Garantir que o sticky-top do BS não conflite com nosso header */
.sticky-top { top: 0; }

/* Container full-width com padding interno */
.container-fluid { max-width: 1320px; }

/* Scrollbar discreta */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background-color: rgba(0,31,63,0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background-color: var(--gold); }

/* Focus outline acessível */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
