/* ==========================================================================
   PÉLVIC — CLÍNICA DE SAÚDE PÉLVICA
   Identidade Visual: Editorial, Alta Medicina, Refinado & Totalmente Responsivo
   ========================================================================== */

:root {
  /* Cores Nobres */
  --wine: #4e1e28;
  --wine-dark: #36121b;
  --wine-light: #6e2f3d;
  --wine-subtle: #f7eded;
  --wine-glass: rgba(78, 30, 40, 0.04);

  /* Acentos Terrosos e Dourado Antique */
  --gold-antique: #bda078;
  --gold-dark: #8c6f47;
  --gold-subtle: #fcf8f2;
  --taupe-warm: #877679;

  /* Superfícies & Fundos */
  --bg-porcelain: #faf7f5;
  --bg-warm-stone: #f4ede8;
  --surface-pure: #ffffff;

  /* Tipografia & Bordas */
  --text-lead: #1a1416;
  --text-main: #4a4043;
  --text-muted: #786c70;
  --line-hair: #e8ded9;
  --line-light: #f3ebe7;

  /* Formas & Efeitos */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-subtle: 0 4px 20px rgba(54, 18, 27, 0.04);
  --shadow-hover: 0 12px 32px rgba(54, 18, 27, 0.07);
  --shadow-ambient: 0 20px 48px rgba(54, 18, 27, 0.06);

  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-porcelain);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

main {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Container Global */
.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

/* Tipografia de Destaque */
.serif-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--wine);
}

.text-white { color: #ffffff !important; }
.text-gold { color: var(--gold-antique) !important; }

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement {
  background-color: var(--wine-dark);
  color: #eedde0;
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.02em;
}

.top-announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-link {
  color: #eedde0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.announcement-link:hover {
  color: #ffffff;
}

.announcement-sep {
  opacity: 0.3;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-hair);
  transition: var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand-emblem {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--surface-pure);
  border: 1px solid var(--line-hair);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.brand-identity:hover .brand-emblem {
  border-color: var(--gold-antique);
  transform: scale(1.03);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title-main {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--wine-dark);
  line-height: 1.1;
}

.brand-tag-line {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-anchor {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-fast);
  padding: 4px 0;
  position: relative;
  white-space: nowrap;
}

.nav-anchor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--wine);
  transition: var(--transition-smooth);
}

.nav-anchor:hover {
  color: var(--wine);
}

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

.btn-action-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wine);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(78, 30, 40, 0.16);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-action-nav:hover {
  background-color: var(--wine-dark);
  transform: translateY(-1px);
  color: #ffffff;
}

.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
}

.menu-toggle-btn .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--wine-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.menu-toggle-btn.active .bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle-btn.active .bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* ==========================================================================
   BOTÕES & BADGES LUXURY
   ========================================================================== */
.btn-primary-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--wine);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid var(--wine);
  box-shadow: 0 6px 20px rgba(78, 30, 40, 0.18);
  text-align: center;
}

.btn-primary-luxury:hover {
  background-color: var(--wine-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(78, 30, 40, 0.25);
}

.btn-secondary-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--surface-pure);
  color: var(--wine-dark);
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line-hair);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  text-align: center;
}

.btn-secondary-luxury:hover {
  border-color: var(--wine);
  color: var(--wine);
  transform: translateY(-2px);
}

.category-capsule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--wine-subtle);
  color: var(--wine);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(78, 30, 40, 0.1);
  margin-bottom: 20px;
}

.capsule-pip {
  width: 6px;
  height: 6px;
  background-color: var(--gold-antique);
  border-radius: 50%;
}

.section-tag-gold {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}

.ambient-gradient-mesh {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(189, 160, 120, 0.12) 0%, rgba(78, 30, 40, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 52px;
  align-items: center;
}

.hero-main-title {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-lead);
  margin-bottom: 20px;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-description {
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 600px;
}

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

.hero-credibility-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line-hair);
  flex-wrap: wrap;
}

.cred-cell {
  display: flex;
  flex-direction: column;
}

.cred-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--wine-dark);
}

.cred-label {
  font-size: 12.5px;
  color: var(--text-muted);
}

.cred-sep {
  width: 1px;
  height: 30px;
  background-color: var(--line-hair);
}

/* Hero Frame Editorial */
.editorial-card-frame {
  background-color: var(--surface-pure);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  border: 1px solid var(--line-hair);
  box-shadow: var(--shadow-ambient);
}

.editorial-quote-block {
  position: relative;
  padding-left: 20px;
  margin-bottom: 24px;
}

.quote-symbol {
  position: absolute;
  left: 0;
  top: -8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  color: var(--gold-antique);
  line-height: 1;
}

.quote-body {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.35;
  color: var(--wine-dark);
  margin-bottom: 6px;
}

.quote-signature {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--gold-dark);
}

.frame-hairline {
  height: 1px;
  background-color: var(--line-light);
  margin-bottom: 24px;
}

.editorial-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-index {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--wine);
  background-color: var(--wine-subtle);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-text strong {
  display: block;
  font-size: 14.5px;
  color: var(--text-lead);
  margin-bottom: 2px;
}

.pillar-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   CONCERNS NAVIGATOR SECTION
   ========================================================================== */
.concerns-navigator-section {
  padding: 10px 0 50px;
}

.navigator-card {
  background-color: var(--surface-pure);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-hair);
  padding: 40px;
  box-shadow: var(--shadow-subtle);
}

.nav-intro {
  margin-bottom: 24px;
}

.nav-intro h3 {
  font-size: 23px;
  font-weight: 800;
  color: var(--text-lead);
  margin-bottom: 6px;
}

.nav-intro p {
  font-size: 14.5px;
  color: var(--text-muted);
}

.concern-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.concern-chip {
  background-color: var(--bg-porcelain);
  border: 1px solid var(--line-hair);
  color: var(--text-main);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.concern-chip:hover {
  border-color: var(--wine);
  color: var(--wine);
}

.concern-chip.active {
  background-color: var(--wine);
  color: #ffffff;
  border-color: var(--wine);
  box-shadow: 0 4px 14px rgba(78, 30, 40, 0.16);
}

.concern-answer-box {
  background-color: var(--bg-warm-stone);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  border: 1px solid var(--line-hair);
  transition: var(--transition-smooth);
}

.cab-header {
  margin-bottom: 10px;
}

.cab-label {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--wine-dark);
}

.cab-desc {
  font-size: 14.5px;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 18px;
}

.cab-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--wine);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.cab-cta:hover {
  color: var(--wine-dark);
  padding-left: 4px;
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
.section-editorial {
  padding: 88px 0;
}

.bg-warm {
  background-color: var(--bg-warm-stone);
}

.section-header-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.editorial-headline {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text-lead);
  margin-bottom: 12px;
  word-break: normal;
  overflow-wrap: break-word;
}

.section-sub-text {
  font-size: 16px;
  color: var(--text-muted);
}

/* ==========================================================================
   SOBRE NÓS
   ========================================================================== */
.editorial-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  margin-bottom: 50px;
  align-items: start;
}

.lead-paragraph {
  font-size: 17.5px;
  color: var(--text-lead);
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 500;
}

.sub-paragraph {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
}

.about-value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background-color: var(--surface-pure);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--line-hair);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--wine-light);
  box-shadow: var(--shadow-hover);
}

.value-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--text-lead);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   TABS DE ESPECIALIDADES
   ========================================================================== */
.specialty-tabs-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.spec-tab-btn {
  background-color: var(--surface-pure);
  border: 1px solid var(--line-hair);
  color: var(--text-main);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.spec-tab-btn:hover {
  border-color: var(--wine);
  color: var(--wine);
}

.spec-tab-btn.active {
  background-color: var(--wine);
  color: #ffffff;
  border-color: var(--wine);
  box-shadow: 0 4px 14px rgba(78, 30, 40, 0.18);
}

.specialty-panel {
  display: none;
  animation: fadeInPanel 0.35s ease forwards;
}

.specialty-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.specialty-grid-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
}

.spec-main-card {
  background-color: var(--surface-pure);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line-hair);
  box-shadow: var(--shadow-subtle);
}

.spec-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
}

.spec-main-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-lead);
  margin-bottom: 12px;
}

.spec-intro-text {
  font-size: 14.5px;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 22px;
}

.spec-items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.item-pill {
  background-color: var(--bg-porcelain);
  border: 1px solid var(--line-hair);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-lead);
}

.spec-cta-line {
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.spec-action-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--wine);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.spec-action-btn:hover {
  color: var(--wine-dark);
  padding-left: 4px;
}

.spec-highlight-card {
  background-color: var(--wine-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-highlight-card h4 {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.spec-highlight-card p {
  font-size: 13.5px;
  color: #eedde0;
  line-height: 1.65;
  margin-bottom: 18px;
}

.card-micro-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}

.micro-note {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-antique);
  font-weight: 700;
}

/* Tecnologias Matrix */
.tech-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.tech-matrix-card {
  background-color: var(--surface-pure);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--line-hair);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.tech-matrix-card:hover {
  border-color: var(--wine-light);
  transform: translateY(-3px);
}

.tech-code {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 10px;
}

.tech-matrix-card h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-lead);
  margin-bottom: 8px;
  line-height: 1.35;
}

.tech-matrix-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   JORNADA DO PACIENTE
   ========================================================================== */
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.journey-step {
  background-color: var(--surface-pure);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border: 1px solid var(--line-hair);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
}

.step-marker {
  margin-bottom: 16px;
}

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--wine);
  background-color: var(--wine-subtle);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.step-content h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-lead);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   CONVÊNIOS EDITORIAL
   ========================================================================== */
.insurance-editorial-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.insurance-copy {
  font-size: 15.5px;
  color: var(--text-main);
  margin-bottom: 26px;
}

.insurance-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ins-card-item {
  background-color: var(--surface-pure);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-hair);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.ins-card-item:hover {
  border-color: var(--wine);
  transform: translateY(-2px);
}

.ins-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--wine-dark);
}

.ins-sub {
  font-size: 11.5px;
  color: var(--text-muted);
}

.ins-cta-card {
  background-color: var(--surface-pure);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--line-hair);
  box-shadow: var(--shadow-ambient);
  text-align: center;
}

.ins-cta-card h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-lead);
  margin-bottom: 8px;
}

.ins-cta-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.pillars-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background-color: var(--surface-pure);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--line-hair);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--wine-light);
  box-shadow: var(--shadow-hover);
}

.card-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 10px;
}

.pillar-card h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--text-lead);
  margin-bottom: 6px;
}

.pillar-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.58;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container-width {
  max-width: 800px;
}

.faq-accordion-editorial {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card {
  background-color: var(--surface-pure);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-hair);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-fast);
}

.faq-card[open] {
  border-color: var(--wine-light);
  box-shadow: var(--shadow-hover);
}

.faq-question-btn {
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 750;
  color: var(--text-lead);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
  gap: 12px;
}

.faq-question-btn::-webkit-details-marker {
  display: none;
}

.accordion-indicator {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.accordion-indicator::before,
.accordion-indicator::after {
  content: '';
  position: absolute;
  background-color: var(--wine);
  transition: var(--transition-smooth);
}

.accordion-indicator::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.accordion-indicator::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.faq-card[open] .accordion-indicator::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-drawer {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.65;
  border-top: 1px solid var(--line-light);
  padding-top: 14px;
}

/* ==========================================================================
   LOCALIZAÇÃO E CONTATO
   ========================================================================== */
.contact-editorial-frame {
  background-color: var(--surface-pure);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--line-hair);
  box-shadow: var(--shadow-ambient);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-subhead {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-lines-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.c-line {
  display: flex;
  flex-direction: column;
}

.c-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}

.c-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-lead);
}

.c-value a {
  color: var(--wine);
  text-decoration: none;
}

.contact-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.schedule-box {
  background-color: var(--bg-porcelain);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--line-light);
}

.schedule-box h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-lead);
  margin-bottom: 8px;
}

.schedule-text {
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.5;
}

.schedule-divider {
  height: 1px;
  background-color: var(--line-hair);
  margin: 18px 0;
}

.schedule-notice strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-lead);
  margin-bottom: 4px;
}

.schedule-notice p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--wine-dark);
  color: #eedde0;
  padding: 60px 0 26px;
  font-size: 13px;
}

.footer-layout-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr;
  gap: 36px;
  margin-bottom: 44px;
}

.brand-emblem-light {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-about-text {
  font-size: 13px;
  color: #c9b4b9;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 320px;
}

.footer-nav-title {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 14px;
}

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

.footer-nav-list a {
  color: #c9b4b9;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-nav-list a:hover {
  color: #ffffff;
  padding-left: 2px;
}

.footer-badge {
  font-size: 12px;
  color: #c9b4b9;
}

.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  font-size: 11.5px;
  color: #a89498;
  text-align: center;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ========================================================================== */
.floating-contact-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background-color: #25d366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.floating-contact-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   PÁGINAS LEGAIS
   ========================================================================== */
.legal-page {
  padding: 50px 0 70px;
}

.legal-box {
  background-color: var(--surface-pure);
  border: 1px solid var(--line-hair);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-subtle);
}

.legal-box h1 {
  font-size: 30px;
  color: var(--text-lead);
  margin-bottom: 8px;
}

.legal-box h2 {
  font-size: 19px;
  color: var(--wine-dark);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-box p {
  font-size: 14.5px;
  color: var(--text-main);
  line-height: 1.68;
  margin-bottom: 14px;
}

.legal-box ul {
  padding-left: 20px;
  margin-bottom: 14px;
  color: var(--text-main);
}

.legal-box li {
  font-size: 13.5px;
  margin-bottom: 6px;
}

/* ==========================================================================
   RESPONSIVIDADE COMPLETA (TABLET & MOBILE AUDIT)
   ========================================================================== */

/* Tablet & Telas Médias (<= 1024px) */
@media (max-width: 1024px) {
  .hero-container,
  .editorial-intro-grid,
  .specialty-grid-layout,
  .insurance-editorial-block,
  .contact-editorial-frame {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-value-cards,
  .pillars-editorial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .journey-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer-layout-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile Padrão (<= 768px) */
@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }

  /* Topbar */
  .top-announcement {
    padding: 6px 0;
  }

  .top-announcement-inner {
    justify-content: center;
    text-align: center;
  }

  .top-announcement .announcement-right {
    display: none;
  }

  .announcement-pin {
    font-size: 11px;
  }

  /* Header & Navigation Drawer */
  .header-container {
    min-height: 70px;
  }

  .brand-title-main {
    font-size: 18px;
  }

  .brand-tag-line {
    font-size: 10px;
  }

  .menu-toggle-btn {
    display: flex;
  }

  .main-navigation {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #ffffff;
    border: 1px solid var(--line-hair);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 16px 40px rgba(54, 18, 27, 0.14);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: var(--transition-smooth);
  }

  .main-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-anchor {
    font-size: 15.5px;
    padding: 10px 14px;
    border-radius: 10px;
    background-color: var(--bg-porcelain);
    display: block;
    width: 100%;
  }

  .nav-anchor::after {
    display: none;
  }

  .btn-action-nav {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 14.5px;
    margin-top: 6px;
  }

  /* Hero Section */
  .hero-section {
    padding: 36px 0 54px;
  }

  .hero-main-title {
    font-size: clamp(27px, 7.2vw, 38px);
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 30px;
  }

  .btn-primary-luxury,
  .btn-secondary-luxury {
    width: 100%;
    padding: 14px 20px;
    font-size: 14.5px;
  }

  .hero-credibility-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 18px;
  }

  .cred-sep {
    display: none;
  }

  .editorial-card-frame {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .quote-body {
    font-size: 18px;
  }

  /* Concerns Navigator */
  .concerns-navigator-section {
    padding: 0 0 40px;
  }

  .navigator-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .nav-intro h3 {
    font-size: 20px;
  }

  .concern-chips-grid {
    gap: 8px;
    margin-bottom: 18px;
  }

  .concern-chip {
    font-size: 12px;
    padding: 8px 14px;
  }

  .concern-answer-box {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .cab-label {
    font-size: 15px;
  }

  .cab-desc {
    font-size: 13.5px;
  }

  /* Seções Gerais */
  .section-editorial {
    padding: 60px 0;
  }

  .section-header-centered {
    margin-bottom: 36px;
  }

  .editorial-headline {
    font-size: clamp(24px, 6.2vw, 32px);
  }

  .section-sub-text {
    font-size: 14.5px;
  }

  /* Sobre Nós */
  .editorial-intro-grid {
    gap: 20px;
    margin-bottom: 32px;
  }

  .lead-paragraph {
    font-size: 16px;
  }

  .sub-paragraph {
    font-size: 14px;
  }

  .about-value-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .value-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  /* Tabs de Especialidades (Scroll Horizontal Suave) */
  .specialty-tabs-bar {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 0 10px;
    margin-bottom: 24px;
    scrollbar-width: none;
  }

  .specialty-tabs-bar::-webkit-scrollbar {
    display: none;
  }

  .spec-tab-btn {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 12.5px;
  }

  .spec-main-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .spec-main-card h3 {
    font-size: 21px;
  }

  .spec-intro-text {
    font-size: 13.5px;
    margin-bottom: 18px;
  }

  .spec-items-grid {
    flex-direction: column;
    gap: 6px;
  }

  .item-pill {
    width: 100%;
    font-size: 12px;
    padding: 8px 12px;
  }

  .spec-highlight-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .tech-matrix-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tech-matrix-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  /* Jornada */
  .journey-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .journey-step {
    padding: 22px 18px;
    border-radius: 16px;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .step-marker {
    margin-bottom: 0;
  }

  .step-num {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* Convênios */
  .insurance-editorial-block {
    gap: 26px;
  }

  .insurance-copy {
    font-size: 14.5px;
    margin-bottom: 20px;
  }

  .insurance-grid-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ins-card-item {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .ins-title {
    font-size: 15px;
  }

  .ins-sub {
    font-size: 11px;
  }

  .ins-cta-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .ins-cta-card h4 {
    font-size: 18px;
  }

  /* Diferenciais */
  .pillars-editorial-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pillar-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  /* FAQ */
  .faq-question-btn {
    padding: 16px 18px;
    font-size: 14.5px;
  }

  .faq-drawer {
    padding: 0 18px 16px;
    font-size: 13.5px;
  }

  /* Contato & Localização */
  .contact-editorial-frame {
    padding: 26px 18px;
    border-radius: 18px;
    gap: 26px;
  }

  .contact-subhead {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .schedule-box {
    padding: 20px 16px;
    border-radius: 14px;
  }

  /* Footer */
  .site-footer {
    padding: 44px 0 24px;
  }

  .footer-layout-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-legal-bar {
    font-size: 11px;
    line-height: 1.5;
  }

  /* Floating WhatsApp Button */
  .floating-contact-btn {
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
  }

  .floating-contact-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Páginas Legais */
  .legal-page {
    padding: 36px 0 54px;
  }

  .legal-box {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .legal-box h1 {
    font-size: 24px;
  }

  .legal-box h2 {
    font-size: 17px;
    margin-top: 22px;
  }

  .legal-box p {
    font-size: 13.5px;
  }
}

/* Telas Pequenas (<= 380px) */
@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero-main-title {
    font-size: 25px;
  }

  .brand-title-main {
    font-size: 16.5px;
  }

  .insurance-grid-cards {
    grid-template-columns: 1fr;
  }

  .spec-main-card,
  .navigator-card,
  .contact-editorial-frame,
  .editorial-card-frame {
    padding: 20px 14px;
  }
}

/* Ajuste específico para header de páginas legais em telas pequenas */
@media (max-width: 480px) {
  .site-header .btn-secondary-luxury {
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
  }
}
