/* ============================================
   Clínica da Cefaleia — Dra. Verônica Gutierres
   Versão 4.0 — Layout Premium Stacking Cards
   ============================================ */

/* ----- Reset & Base ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --green-deep: #0D1B12;
  --green-mid: #1A2E21;
  --green-accent: #2A4033;
  --gold: #D4B896;
  --gold-light: #E8D5B7;
  --gold-dark: #B89B6A;
  --cream: #F8F5F0;
  --cream-light: #FDFBF7;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --content-max: 1200px;

  /* Cards */
  --card-radius: 24px;
  --card-shadow: 0 -12px 48px rgba(0,0,0,0.25);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--green-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ----- Skip Link ----- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--green-deep);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 500;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 900px) {
  .container { padding: 0 40px; }
}

/* ----- Gold Decorative Line ----- */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 0;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(13,27,18,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  padding: 8px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 900px) {
  .nav-inner { padding: 0 40px; }
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: height 0.3s ease;
}

@media (min-width: 900px) {
  .nav-logo img { height: 56px; }
}

.site-header.scrolled .nav-logo img {
  height: 36px;
}

@media (min-width: 900px) {
  .site-header.scrolled .nav-logo img { height: 44px; }
}

/* Desktop nav */
.nav-links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green-deep) !important;
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Dropdown */
.nav-dropdown { position: relative; list-style: none; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  padding: 8px 0;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream); transition: color 0.25s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible { color: var(--gold); }
.nav-dropdown-toggle svg { transition: transform 0.3s; }
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #FDFBF7;
  border: 1px solid rgba(212,184,150,0.25);
  border-radius: 12px;
  padding: 8px 0; min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200; list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block; padding: 12px 24px; font-size: 0.875rem; font-weight: 400;
  color: #0D1B12 !important; text-transform: none !important;
  letter-spacing: 0 !important; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  background: rgba(212,184,150,0.12); color: #B89B6A !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

@media (min-width: 900px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--gold);
}

.mobile-nav .mobile-cta {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  background: var(--gold);
  color: var(--green-deep);
  padding: 14px 40px;
  border-radius: 12px;
  margin-top: 16px;
}

/* ============================================
   SECTIONS
   ============================================ */
.card-section {
  position: relative;
  padding: 64px 0;
}

/* Hero — fullscreen */
.card-section:first-child {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Desktop: mais respiro */
@media (min-width: 900px) {
  .card-section {
    padding: 100px 0;
  }
  .card-section:first-child {
    padding: 0;
  }
}

/* Backgrounds */
.bg-green-deep { background: var(--green-deep); color: var(--cream); }
.bg-green-mid { background: var(--green-mid); color: var(--cream); }
.bg-cream { background: var(--cream); color: var(--text); }

/* Inner padding */
.card-inner {
  width: 100%;
}

/* ============================================
   EYEBROW
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* On cream background */
.bg-cream .eyebrow { color: var(--gold-dark); }
.bg-cream .eyebrow::before { background: var(--gold-dark); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  letter-spacing: -0.01em;
}

.subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
}

.bg-green-deep .subtitle,
.bg-green-mid .subtitle {
  color: rgba(248,245,240,0.65);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,184,150,0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 14px 28px;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold-dark);
  color: var(--green-deep);
  background: var(--gold);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   CARD 1 — HERO
   ============================================ */
.hero {
  min-height: auto;
  padding-top: 100px;
  padding-bottom: 48px;
  position: relative;
}

@media (min-width: 900px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 80px;
    padding-bottom: 0;
  }
}

/* Glow decorativo */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(212,184,150,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Dots dourados decorativos */
.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 5%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(212,184,150,0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(212,184,150,0.25);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-bottom: 28px;
  }
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--cream);
}

.hero .subtitle {
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Hero image card */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: none;
}

@media (min-width: 900px) {
  .hero-image-wrapper {
    display: block;
  }
}

.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,184,150,0.2);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 900px) {
  .hero-image-card img {
    aspect-ratio: 4/5;
  }
}

/* Gold frame accent */
.hero-image-card::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212,184,150,0.15);
  border-radius: 14px;
  pointer-events: none;
}

/* ============================================
   CARD 2 — MANIFESTO
   ============================================ */
.manifesto-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}

.manifesto-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
}

.manifesto-signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gold-dark);
}

.manifesto-line {
  width: 60px;
  height: 1px;
  background: var(--gold-dark);
  margin: 24px auto 0;
}

/* ============================================
   CARD 3 — SOBRE
   ============================================ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.sobre-image-wrapper {
  position: relative;
}

.sobre-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,184,150,0.2);
  position: relative;
}

.sobre-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.sobre-image::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212,184,150,0.12);
  border-radius: 14px;
  pointer-events: none;
}

.sobre-subtitle {
  font-size: 0.9375rem;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.sobre-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(248,245,240,0.7);
  margin-bottom: 32px;
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(248,245,240,0.8);
}

.credentials-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   CARD 4 — ESPECIALIDADES
   ============================================ */
.especialidades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .especialidades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .especialidades-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.especialidade-card {
  background: var(--cream-light);
  border-radius: 16px;
  padding: 36px 28px;
  border-bottom: 3px solid var(--gold);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
  position: relative;
}

.especialidade-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.especialidade-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.especialidade-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.especialidade-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.especialidade-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-dark);
  transition: color 0.25s ease;
}

.especialidade-link:hover {
  color: var(--text);
}

/* ============================================
   CARD 5 — MÉTODO
   ============================================ */
.metodo-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.metodo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .metodo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.metodo-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.metodo-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212,184,150,0.1);
  border: 1px solid rgba(212,184,150,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metodo-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metodo-item h3 {
  color: var(--cream);
  margin-bottom: 8px;
  font-size: 1.0625rem;
}

.metodo-item p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(248,245,240,0.6);
}

/* ============================================
   PROCEDIMENTOS
   ============================================ */
.procedimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .procedimentos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .procedimentos-grid { grid-template-columns: repeat(4, 1fr); }
}

.procedimento-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(212,184,150,0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.procedimento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.procedimento-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,184,150,0.1);
  border-radius: 50%;
}
.procedimento-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.procedimento-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

.procedimento-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================
   CARD 6 — MÍDIA
   ============================================ */
.midia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .midia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.midia-card {
  background: var(--cream-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,184,150,0.2);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.midia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.midia-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  display: block;
  background: #000;
}

.midia-card-label {
  padding: 16px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Placeholder quando vídeo não existe */
.midia-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,245,240,0.3);
  font-size: 0.875rem;
}

/* ============================================
   REVIEWS GOOGLE
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(212,184,150,0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.review-card__quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.review-card__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
}
.review-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__profile img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}
.review-card__source {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}
.google-badge:hover { color: var(--gold-light); }

/* ============================================
   DEPOIMENTOS VÍDEO
   ============================================ */
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
  justify-items: center;
}

@media (min-width: 640px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .depoimentos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.depoimento-card {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,184,150,0.2);
  background: var(--green-deep);
}

.depoimento-card video {
  width: 100%;
  display: block;
  background: #000;
}

/* ============================================
   CARD 8 — CTA FINAL
   ============================================ */
.cta-final {
  position: relative;
  text-align: center;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-final-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212,184,150,0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13,27,18,0.92) 0%, rgba(13,27,18,0.96) 100%);
}

.cta-final-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(248,245,240,0.65);
  margin-bottom: 40px;
}

/* ============================================
   CARD 9 — CONTATO
   ============================================ */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contato-info h2 {
  color: var(--text);
  margin-bottom: 32px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contato-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212,184,150,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contato-item-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contato-item-value {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

.contato-item-value a {
  color: var(--gold-dark);
  transition: color 0.25s ease;
}

.contato-item-value a:hover {
  color: var(--text);
}

.contato-image {
  border-radius: 20px;
  overflow: hidden;
}

.contato-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Card "Sua Primeira Consulta" */
.contato-card {
  background: var(--green-deep);
  border-radius: 20px;
  padding: 40px 36px;
  color: var(--cream);
}
.contato-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contato-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 32px;
}
.contato-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.contato-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contato-card-list li:last-child { margin-bottom: 0; }
.contato-card-step {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 500;
  color: var(--gold);
}
.contato-card-list strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}
.contato-card-list span {
  font-size: 0.8125rem;
  color: rgba(248,245,240,0.6);
  line-height: 1.4;
}
.contato-card-footer {
  border-top: 1px solid rgba(212,184,150,0.15);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contato-card-duration {
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--green-deep);
  color: rgba(248,245,240,0.5);
  padding: 60px 0 32px;
  position: relative;
  z-index: 10;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.7;
}

.footer-text {
  max-width: 480px;
  font-size: 0.8125rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(212,184,150,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.footer-social-link:hover {
  border-color: var(--gold);
  background: rgba(212,184,150,0.08);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(212,184,150,0.1);
  margin: 8px 0;
}

.footer-copy {
  font-size: 0.75rem;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Pulse */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Respect user preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .whatsapp-float::before {
    animation: none;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   FOCUS STYLES
   ============================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--green-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--green-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
