/* ==========================================================================
   DRA. JÚLIA JACOB — ODONTOLOGIA & HARMONIZAÇÃO OROFACIAL
   Design System: Luxury Pearl & White Gold Metallic (Tipografia & Geometria Pura)
   Fonts: Jost (Headings) + Nunito Sans (Body)
   Palette: Branco Pérola (#FAF9F5, #FFFFFF), Ouro Branco & Champagne (#F5F5DC, #D4AF37, #C5A880), Bronze Profundo (#22201D)
   ========================================================================== */

:root {
  /* Cores Principais - Branco Pérola e Metálicos */
  --bg-pearl: #FAF9F6;
  --bg-pearl-light: #FFFFFF;
  --bg-pearl-creme: #F5F3EC;
  --bg-pearl-gradient: linear-gradient(145deg, #FFFFFF 0%, #FAF8F3 50%, #F3EFE6 100%);
  --bg-metallic-subtle: linear-gradient(135deg, rgba(245, 245, 220, 0.6) 0%, rgba(255, 255, 255, 0.95) 45%, rgba(228, 219, 199, 0.4) 100%);
  --bg-metallic-hero: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(245, 245, 220, 0.4) 40%, rgba(250, 249, 246, 0.9) 100%);
  
  /* Acentos Ouro Branco e Champagne Metálico */
  --gold-white: #F5F5DC;
  --gold-primary: #C5A880;
  --gold-metallic: #B89758;
  --gold-deep: #8E733D;
  --gold-light: #EBDDC3;
  --gold-border: rgba(197, 168, 128, 0.35);
  --gold-border-light: rgba(197, 168, 128, 0.18);
  --gold-glow: rgba(197, 168, 128, 0.2);

  /* Textos e Contrastes */
  --text-primary: #1F1D1A;
  --text-secondary: #58534C;
  --text-muted: #827C72;
  --text-light: #FFFFFF;

  /* Bordas, Sombras e Elementos Estruturais */
  --border-subtle: rgba(220, 212, 195, 0.6);
  --shadow-pearl: 0 10px 30px -5px rgba(110, 95, 75, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 40px -10px rgba(184, 151, 88, 0.18), 0 8px 16px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 8px 24px rgba(35, 30, 20, 0.04);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Tipografia */
  --font-title: 'Jost', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-pearl);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Background Texture Decorativa Sutil */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 10% 10%, rgba(245, 245, 220, 0.7) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Tipografia Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Elementos Utilitários de Estilo */
.badge-luxury {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 220, 0.8));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  box-shadow: 0 4px 15px rgba(184, 151, 88, 0.08);
}

.badge-luxury svg {
  color: var(--gold-metallic);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.text-left {
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-metallic);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-title strong {
  font-weight: 600;
  background: linear-gradient(135deg, #1F1D1A 0%, #8E733D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.section-header.text-left .section-desc {
  margin: 0;
}

/* ==========================================================================
   HEADER & NAVEGAÇÃO
   ========================================================================== */
.top-notice-bar {
  background: #1C1A17;
  color: #E2DBD0;
  font-size: 0.82rem;
  padding: 8px 0;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(245, 245, 220, 0.1);
}

.top-notice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.notice-items {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.notice-items li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-items svg {
  color: var(--gold-light);
  width: 14px;
  height: 14px;
}

.header-site {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Brand Logo (Monograma Geométrico de Alta Luxuosidade) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-monogram {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5DC 60%, #E2D7BE 100%);
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
  position: relative;
}

.logo-monogram::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 1px solid rgba(197, 168, 128, 0.4);
}

.logo-letters {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gold-deep);
  line-height: 1;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-metallic);
}

/* Navegação Principal */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-metallic);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gold-deep);
}

.nav-link:hover::after {
  width: 100%;
}

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

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-luxury {
  background: linear-gradient(135deg, #C5A880 0%, #A88755 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(184, 151, 88, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-luxury:hover {
  background: linear-gradient(135deg, #D4B68F 0%, #B89758 100%);
  box-shadow: 0 10px 28px rgba(184, 151, 88, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  border: 1px solid var(--gold-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 151, 88, 0.15);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO SECTION — LUXURY TYPOGRAPHY & GOLD DETAILS
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 90px 0 80px;
  background: var(--bg-metallic-hero);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.15;
  margin: 24px 0 20px;
  color: var(--text-primary);
}

.hero-title em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(135deg, #1C1A17 0%, #A88755 60%, #C5A880 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-border-light);
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(245, 245, 220, 0.8);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}

.highlight-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.highlight-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Hero Showcase Card — Composição Geométrica Perolada */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.luxury-card-showcase {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 248, 242, 0.92) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 24px 60px -15px rgba(110, 95, 75, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.luxury-card-showcase::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.doctor-seal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold-border-light);
}

.seal-emblem {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px dashed var(--gold-metallic);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seal-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #FAF9F6 0%, #F5F5DC 100%);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-deep);
}

.cro-badge {
  text-align: right;
}

.cro-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  background: rgba(245, 245, 220, 0.7);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border-light);
}

.cro-city {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.showcase-bio-lead {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.showcase-formation {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.showcase-credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.showcase-credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.showcase-credentials-list li svg {
  color: var(--gold-metallic);
  flex-shrink: 0;
  margin-top: 3px;
}

.showcase-footer {
  padding-top: 20px;
  border-top: 1px solid var(--gold-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase-doctoralia-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: #D4AF37;
}

.rating-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.showcase-tag-small {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: #FFF;
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   METRIC BAR / STATS
   ========================================================================== */
.stats-strip {
  background: linear-gradient(135deg, #FAF8F2 0%, #F5F3EC 50%, #FAF8F2 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--gold-border-light);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-title);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ESPECIALIDADES & TRATAMENTOS
   ========================================================================== */
.services-section {
  padding: 100px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-pearl);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FAF8F2 0%, #F5F5DC 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.15);
}

.service-card-title {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-sublist {
  list-style: none;
  padding-top: 18px;
  border-top: 1px solid var(--gold-border-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.service-sublist li {
  font-size: 0.88rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-sublist li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: auto;
}

.service-link:hover {
  color: var(--text-primary);
  gap: 12px;
}

/* Card em Destaque Especial */
.service-card.featured {
  background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F2 60%, #F5F5DC 100%);
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 16px 36px -10px rgba(184, 151, 88, 0.22);
}

.featured-tag {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--gold-deep);
  color: #FFFFFF;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   ALINHADORES TRANSPARENTES — SEÇÃO DE DESTAQUE TECNOLÓGICO
   ========================================================================== */
.aligners-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1D1B18 0%, #292622 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.aligners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.aligners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.aligner-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 245, 220, 0.15);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.aligner-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.aligner-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(184, 151, 88, 0.2);
  border: 1px solid rgba(245, 245, 220, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.aligner-box h3 {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.aligner-box p {
  color: #D6D0C5;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.aligner-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aligner-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #EDE8E1;
  font-size: 0.94rem;
}

.aligner-features li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   HARMONIZAÇÃO OROFACIAL — EQUILÍBRIO & ELEGÂNCIA
   ========================================================================== */
.hof-section {
  padding: 100px 0;
  background: var(--bg-pearl);
}

.hof-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.hof-text-column h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.hof-text-column p {
  font-size: 1.08rem;
  margin-bottom: 24px;
}

.hof-philosophy-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F2 100%);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 30px;
}

.hof-philosophy-card blockquote {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
  font-style: italic;
}

.hof-grid-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hof-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-pearl);
  transition: var(--transition);
}

.hof-item-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.hof-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.hof-item-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SOBRE A PROFISSIONAL — BIOGRAFIA & FORMAÇÃO PUC CAMPINAS
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #F8F6EE 0%, #FFFFFF 50%, #F5F3EB 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-badge-card {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-pearl);
  text-align: center;
  position: relative;
}

.about-badge-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--gold-border);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

.about-large-monogram {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5DC 100%);
  border: 2px solid var(--gold-primary);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-deep);
  box-shadow: 0 8px 24px rgba(184, 151, 88, 0.2);
}

.about-badge-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.about-badge-cro {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 20px;
}

.about-badge-milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-border-light);
}

.milestone-item {
  text-align: center;
}

.milestone-val {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
}

.milestone-lbl {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.about-content-right h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.about-content-right p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pillar-item svg {
  color: var(--gold-metallic);
  flex-shrink: 0;
  margin-top: 4px;
}

.pillar-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   DOCTORALIA & RECONHECIMENTO CLÍNICO
   ========================================================================== */
.reputation-section {
  padding: 90px 0;
  background: var(--bg-pearl);
}

.doctoralia-banner {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F2 70%, #F5F5DC 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-pearl);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.doctoralia-text-side h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.doctoralia-text-side p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.doctoralia-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.doctoralia-badges-list li {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.doctoralia-card-side {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.doc-score {
  font-family: var(--font-title);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.doc-stars {
  color: #D4AF37;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.doc-opinions-count {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.doc-verified {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ==========================================================================
   LOCALIZAÇÃO, CONSULTÓRIO & CONTATO
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #FAF8F2 0%, #FFFFFF 100%);
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background: #FFFFFF;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-pearl);
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 34px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FAF8F2 0%, #F5F5DC 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-detail-text a:hover {
  color: var(--gold-deep);
}

/* Map Card */
.contact-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-pearl);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 20px 24px;
  background: #FAF9F6;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.map-badge {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: #FFF;
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.map-frame-wrapper {
  flex-grow: 1;
  min-height: 380px;
  width: 100%;
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   FAQ — DÚVIDAS FREQUENTES
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-pearl);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-title);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-question svg {
  color: var(--gold-metallic);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ==========================================================================
   BANNER FINAL — CTA DE AGENDAMENTO
   ========================================================================== */
.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1C1A17 0%, #2A2723 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

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

.final-cta-title {
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: 300;
  margin: 20px 0;
  line-height: 1.2;
}

.final-cta-title strong {
  font-weight: 600;
  color: var(--gold-light);
}

.final-cta-desc {
  color: #D6D0C5;
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-site {
  background: #151412;
  color: #9C9588;
  padding: 70px 0 30px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(245, 245, 220, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand-logo {
  margin-bottom: 18px;
}

.footer-brand .logo-name {
  color: #FFFFFF;
}

.footer-brand p {
  color: #9C9588;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-column h4 {
  color: #FFFFFF;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #9C9588;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-info p {
  color: #9C9588;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-info svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--gold-light);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVIDADE (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
  }
  .luxury-card-showcase {
    max-width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aligners-grid {
    grid-template-columns: 1fr;
  }
  .hof-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctoralia-banner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: none;
  }
  .nav-menu.is-active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .header-actions .btn {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hof-grid-items {
    grid-template-columns: 1fr;
  }
  .about-pillars {
    grid-template-columns: 1fr;
  }
  .final-cta-title {
    font-size: 2.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
}
