/* ==========================================================================
   PORTAL DOS SEGREDOS DA MULHER — FEMININE LUXURY DESIGN SYSTEM (2026)
   Estética: Haute Beauté Feminina (Goop, Byrdie, Glossier, Vogue Beauty, Rose Inc)
   Layout Centralizado Editorial | Imagens Harmoniosas | Zero Preto Agressivo
   ========================================================================== */

:root {
  /* Paleta Feminina de Alto Padrão */
  --rose-primary: #bf284e;         /* Rosa Framboesa / Coral Nobre para CTAs */
  --rose-primary-hover: #9e1d3c;   /* Tom mais profundo no hover */
  --rose-deep: #7e2239;            /* Vinho Marsala Elegante para Topbar e Destaques */
  --rose-wine: #521625;            /* Vinho Bordô Profundo para Títulos (Substitui o preto) */
  --rose-soft: #fdedef;            /* Blush Suave para Fundos de Tags e Badges */
  --rose-border: #f3d4da;          /* Borda Delicada Rosa Seda */
  
  /* Acentos de Luxo & Ouro Champanhe */
  --gold: #cca34c;
  --gold-dark: #9e7a2b;
  --gold-light: #fbf7ee;
  --gold-glow: rgba(204, 163, 76, 0.22);

  /* Superfícies & Neutros Femininos Acolhedores */
  --bg-body: #fffbf9;              /* Porcelana Quente com Toque de Seda */
  --bg-card: #ffffff;
  --bg-alt: #fdf5f4;               /* Linho Rosa Suave */
  --bg-highlight: #fef0f2;         /* Destaque Blush */
  --border-subtle: #f4e6e8;
  --border-card: #ebd6da;
  --border-focus: #bf284e;

  /* Textos & Tipografia de Alta Legibilidade */
  --text-title: #521625;           /* Vinho Bordô Profundo — Máximo Contraste Sem Preto */
  --text-main: #3d2b2e;            /* Cacau Espresso Feminino */
  --text-muted: #785f64;           /* Rosa Taupe Elegante */
  --text-light: #9e858b;

  /* Tipografia */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Dimensões & Sombras */
  --container-max: 1140px;
  --container-article: 760px;      /* Largura Ideal de Leitura Editorial Centralizada */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --shadow-soft: 0 4px 20px rgba(126, 34, 57, 0.04);
  --shadow-card: 0 10px 30px rgba(126, 34, 57, 0.06);
  --shadow-hover: 0 18px 40px rgba(191, 40, 78, 0.14);
  --shadow-modal: 0 25px 65px rgba(82, 22, 37, 0.35);
}

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

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

/* ==========================================================================
   BARRA DE PROGRESSO DE LEITURA
   ========================================================================== */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--rose-primary));
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* ==========================================================================
   HEADER EDITORIAL FEMININO COM BOTÃO COMPACTO E PULSANTE
   ========================================================================== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(126, 34, 57, 0.04);
}

.header-topbar {
  background-color: var(--rose-deep);
  color: #fff4f6;
  font-size: 11.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  padding: 8px 16px;
}

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

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-logo .logo-title {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 700;
  color: var(--rose-wine);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-logo .logo-sub {
  font-size: 9.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 800;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose-wine);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--rose-primary);
  transition: width 0.25s ease;
}

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

/* Botão Compacto e Pulsante no Header */
@keyframes pulseCta {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(191, 40, 78, 0.45);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 7px rgba(191, 40, 78, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(191, 40, 78, 0);
  }
}

.header-cta-btn {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-primary-hover));
  color: #ffffff !important;
  padding: 7px 15px;               /* Compacto e delicado */
  border-radius: var(--radius-pill);
  font-size: 11.5px;               /* Menorzinho conforme solicitado */
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 12px rgba(191, 40, 78, 0.25);
  animation: pulseCta 2.2s infinite ease-in-out;
  white-space: nowrap;
}

.header-cta-btn:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 6px 18px rgba(191, 40, 78, 0.38);
}

/* ==========================================================================
   HERO / BANNER DA HOME
   ========================================================================== */
.hero-portal {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 60px 24px 40px;
  text-align: center;
}

.hero-portal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.portal-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  border: 1px solid var(--rose-border);
}

.hero-portal h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.2;
  color: var(--rose-wine);
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-portal p {
  font-size: 17.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 26px;
}

/* ==========================================================================
   GRID DE ARTIGOS NA HOME (ALINHAMENTO HARMONIOSO)
   ========================================================================== */
.articles-grid-wrap,
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 50px 24px;
}

.section-header-editorial {
  text-align: center;
  border-bottom: 2px solid var(--rose-border);
  padding-bottom: 18px;
  margin-bottom: 40px;
}

.section-header-editorial h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--rose-wine);
  font-weight: 700;
  margin-bottom: 6px;
}

.section-header-editorial p {
  font-size: 15px;
  color: var(--text-muted);
}

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

.article-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-border);
}

.article-card-thumb,
.card-img-wrap {
  position: relative;
  padding-top: 58%;
  overflow: hidden;
  background-color: var(--bg-alt);
  display: block;
}

.article-card-thumb img,
.card-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card-thumb img,
.article-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.article-card-category,
.card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(255, 255, 255, 0.94);
  color: var(--rose-deep);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.article-card-body,
.card-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card-meta,
.card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-card-meta span,
.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-card-title,
.card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.35;
  color: var(--rose-wine);
  margin-bottom: 10px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.article-card-title a,
.card-title a {
  color: inherit;
}

.article-card:hover .article-card-title,
.article-card:hover .card-title,
.article-card:hover .card-title a {
  color: var(--rose-primary);
}

.article-card-excerpt,
.card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.article-card-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--rose-primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.article-card:hover .article-card-link {
  color: var(--rose-primary-hover);
  text-decoration: underline;
}

/* ==========================================================================
   ESTRUTURA DE LEITURA EDITORIAL CENTRALIZADA (+2000 PALAVRAS)
   Conserta o desalinhamento e a dispersão lateral
   ========================================================================== */
.article-wrapper,
.article-container {
  max-width: var(--container-article);
  margin: 0 auto;
  padding: 40px 20px 80px;
  box-sizing: border-box;
}

.breadcrumb,
.breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;       /* Centralizado */
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
  color: var(--rose-primary);
  text-decoration: underline;
}

.article-header {
  text-align: center;            /* Centralizado */
  margin-bottom: 32px;
}

.article-category-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--rose-soft);
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  border-radius: var(--radius-pill);
  margin: 0 auto 16px;
  border: 1px solid var(--rose-border);
}

.article-title {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.28;
  color: var(--rose-wine);
  margin: 0 auto 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;            /* Centralizado */
  max-width: 720px;
}

.article-deck {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 auto 24px;
  text-align: center;            /* Centralizado */
  max-width: 660px;
}

/* Selo E-E-A-T de Revisão Médica e Científica Centralizado */
.eeat-review-bar,
.medical-review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: #ffffff;
  border: 1px solid var(--rose-border);
  border-left: 4px solid var(--rose-primary);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  margin: 0 auto 32px;
  max-width: 680px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.reviewer-avatar,
.medical-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-border);
  flex-shrink: 0;
}

.reviewer-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 2px;
}

.reviewer-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--rose-wine);
}

.reviewer-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* Caixa "Resumo em 30 Segundos" Centralizada */
.ai-snapshot-box {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #ffffff 100%);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  margin: 32px auto 36px;
  max-width: 720px;
  box-shadow: var(--shadow-soft);
}

.ai-snapshot-header,
.ai-snapshot-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rose-deep);
  margin-bottom: 12px;
  text-align: center;
}

.ai-snapshot-header svg {
  width: 18px;
  height: 18px;
  fill: var(--rose-primary);
}

.ai-snapshot-content,
.ai-snapshot-box p {
  font-size: 15.5px;
  color: var(--text-main);
  margin-bottom: 0;
  line-height: 1.7;
  text-align: left;
}

/* ==========================================================================
   IMAGENS HARMONIOSAS DENTRO DO ARTIGO (LARGURA E ALTURA CONTROLADAS)
   ========================================================================== */
.article-hero-img-wrap,
.article-featured-image,
.article-image-box {
  max-width: 680px;              /* Largura controlada e centralizada */
  margin: 36px auto;
  text-align: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-alt);
}

.article-hero-img-wrap img,
.article-featured-image img,
.article-image-box img {
  width: 100%;
  height: auto;
  max-height: 420px;             /* Evita que imagens fiquem gigantes na tela */
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.img-caption,
.caption,
.image-caption {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  padding: 10px 16px;
  background-color: var(--bg-alt);
  font-style: italic;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   TIPOGRAFIA DO CORPO DO ARTIGO (CENTRALIZADO & ALINHADO)
   ========================================================================== */
.article-body {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-main);
  max-width: 720px;
  margin: 0 auto;
}

.article-body p {
  margin-bottom: 24px;
  text-align: left;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.3;
  color: var(--rose-wine);
  margin: 46px auto 20px;
  text-align: center;            /* Subtítulos centralizados */
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rose-border);
  font-weight: 700;
  max-width: 680px;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.35;
  color: var(--rose-deep);
  margin: 36px auto 16px;
  text-align: center;            /* Seções centralizadas */
  font-weight: 700;
}

.article-body ul, .article-body ol {
  margin: 0 auto 24px auto;
  max-width: 660px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.article-body strong {
  color: var(--rose-wine);
  font-weight: 700;
}

/* Citações Editoriais Centralizadas */
.editorial-quote,
.article-body blockquote {
  max-width: 660px;
  margin: 36px auto;
  padding: 24px 28px;
  background-color: var(--bg-alt);
  border-left: 4px solid var(--rose-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--rose-wine);
  line-height: 1.65;
  text-align: center;
}

.editorial-quote p,
.article-body blockquote p {
  margin-bottom: 0;
  text-align: center;
}

/* Callout Clínico */
.callout-clinical {
  max-width: 680px;
  margin: 36px auto;
  background-color: #ffffff;
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
}

.callout-clinical h4 {
  font-family: var(--font-serif);
  font-size: 18.5px;
  color: var(--rose-wine);
  margin-bottom: 8px;
  text-align: center;
}

.callout-clinical p {
  font-size: 15px;
  margin-bottom: 0;
  color: var(--text-main);
  text-align: left;
}

/* Tabelas Comparativas */
.comparison-table-wrap,
.science-table-wrapper {
  max-width: 700px;
  margin: 36px auto;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-soft);
}

.comparison-table,
.science-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background-color: #ffffff;
  text-align: left;
}

.comparison-table th,
.science-table th {
  background-color: var(--bg-alt);
  color: var(--rose-wine);
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-card);
}

.comparison-table td,
.science-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-main);
}

/* ==========================================================================
   BOX DE OFERTA DE CABELO (LIGHT ADVERTORIAL COM BÔNUS) CENTRALIZADO
   ========================================================================== */
.hair-offer-box {
  max-width: 700px;
  margin: 48px auto;
  text-align: center;
  background: linear-gradient(135deg, #fff7f8 0%, #fdf0f2 100%);
  border: 2px solid var(--rose-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: 0 12px 35px rgba(191, 40, 78, 0.08);
}

.hair-offer-badge-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--rose-deep);
  color: #fff4f6;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.hair-offer-title {
  font-family: var(--font-serif);
  font-size: 25px;
  color: var(--rose-wine);
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 700;
  text-align: center;
}

.hair-offer-desc {
  font-size: 15.5px;
  color: var(--text-main);
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 620px;
  text-align: center;
}

/* Grade de Bônus Digitais inclusos */
.hair-bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 auto 22px;
  max-width: 640px;
}

.hair-bonus-card {
  background-color: #ffffff;
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.hair-bonus-icon {
  font-size: 22px;
  margin-bottom: 4px;
  display: block;
}

.hair-bonus-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--rose-wine);
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
}

.hair-bonus-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--rose-primary);
  background-color: var(--rose-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* Botão de Chamada para Ação (Abre Modal de Pedido) */
.btn-open-order {
  display: block;
  width: 100%;
  max-width: 580px;
  margin: 0 auto 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--rose-primary) 0%, var(--rose-primary-hover) 100%);
  color: #ffffff;
  padding: 16px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(191, 40, 78, 0.35);
  transition: all 0.25s ease;
}

.btn-open-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(191, 40, 78, 0.45);
}

.hair-offer-subnote {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Box Educacional de Pele/Corpo (Sem Venda) */
.editorial-takeaway-box {
  max-width: 680px;
  margin: 36px auto;
  text-align: center;
  background-color: var(--bg-alt);
  border: 1px solid var(--rose-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.editorial-takeaway-box h4 {
  font-family: var(--font-serif);
  font-size: 18.5px;
  color: var(--rose-wine);
  margin-bottom: 8px;
  text-align: center;
}

.editorial-takeaway-box p {
  font-size: 15px;
  margin-bottom: 0;
  color: var(--text-main);
  text-align: center;
}

/* Box de Autor E-E-A-T Centralizado */
.author-bio-card {
  max-width: 680px;
  margin: 44px auto 36px;
  background-color: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.author-bio-avatar,
.author-bio-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rose-border);
  flex-shrink: 0;
}

.author-bio-details h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--rose-wine);
  margin-bottom: 3px;
}

.author-bio-role,
.author-bio-credentials {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.author-bio-text,
.author-bio-details p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Isenções & Referências */
.medical-disclaimer {
  max-width: 680px;
  margin: 24px auto;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  line-height: 1.6;
  border: 1px solid var(--border-subtle);
}

.scientific-references {
  max-width: 680px;
  margin: 36px auto;
  font-size: 12.5px;
  color: var(--text-muted);
  background: #ffffff;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
}

.scientific-references h4 {
  text-align: center;
  color: var(--rose-wine);
  margin-bottom: 12px;
}

/* ==========================================================================
   MODAL POP-UP DE PEDIDO OFICIAL (ORDER FORM MODAL)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(67, 19, 30, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card.order-modal-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-modal);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--rose-border);
}

.modal-overlay.active .modal-card.order-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--rose-wine);
  background-color: var(--bg-alt);
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-badge-scarcity {
  display: inline-block;
  background-color: #ffe6eb;
  color: var(--rose-deep);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  border: 1px solid var(--rose-border);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 23px;
  color: var(--rose-wine);
  line-height: 1.3;
  margin-bottom: 8px;
  font-weight: 700;
}

.modal-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Seletor de Kits no Modal */
.kit-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.kit-card {
  position: relative;
  cursor: pointer;
  display: block;
}

.kit-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.kit-card-inner {
  border: 1.5px solid var(--border-card);
  background-color: var(--bg-body);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kit-card:hover .kit-card-inner {
  border-color: var(--rose-primary);
}

.kit-card input[type="radio"]:checked + .kit-card-inner {
  border-color: var(--rose-primary);
  background-color: var(--bg-highlight);
  box-shadow: 0 4px 14px rgba(191, 40, 78, 0.15);
}

.kit-badge-popular {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--rose-primary);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  z-index: 2;
}

.kit-name {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--rose-wine);
  display: block;
  margin-bottom: 2px;
}

.kit-desc {
  font-size: 10.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}

.kit-price {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--rose-deep);
  display: block;
}

/* Linhas e Campos do Formulário */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  margin-bottom: 12px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--rose-wine);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  font-size: 14px;
  color: var(--text-main);
  background-color: var(--bg-body);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--rose-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(191, 40, 78, 0.1);
}

/* Box de Bônus Inclusos no Modal */
.order-bonus-box {
  background-color: var(--bg-alt);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 14px;
}

.bonus-box-title {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--rose-deep);
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.bonus-list {
  list-style: none;
  font-size: 12px;
  color: var(--text-main);
}

.bonus-list li {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Botão de Finalização do Pedido */
.btn-submit-order {
  width: 100%;
  background: linear-gradient(135deg, var(--rose-primary) 0%, var(--rose-primary-hover) 100%);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 25px rgba(191, 40, 78, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.btn-submit-order small {
  font-size: 10.5px;
  font-weight: 500;
  text-transform: none;
  opacity: 0.9;
}

.btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(191, 40, 78, 0.45);
}

.order-guarantee-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ==========================================================================
   RODAPÉ EDITORIAL FEMININO (VINHO BORDÔ VELUDO)
   ========================================================================== */
.site-footer {
  background-color: #43131e;
  color: #f5e4e7;
  padding: 60px 24px 35px;
  border-top: 2px solid var(--rose-deep);
  margin-top: 60px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 16.5px;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #dfc3c8;
  font-size: 13.5px;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-brand .brand-title {
  font-family: var(--font-serif);
  font-size: 25px;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13.5px;
  color: #d1b1b7;
  line-height: 1.6;
  max-width: 340px;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11.5px;
  color: #c49ea5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-compliance-text {
  font-size: 11px;
  color: #bfa0a7;
  line-height: 1.5;
  margin-top: 8px;
  width: 100%;
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  .nav-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .article-title {
    font-size: 26px;
  }
  .hero-portal h1 {
    font-size: 30px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .author-bio-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .hair-bonuses-grid {
    grid-template-columns: 1fr;
  }
  .kit-selector-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .eeat-review-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .btn-open-order {
    font-size: 14px;
    padding: 15px 18px;
  }
}
