/* ==========================================================================
   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 ULTRA-COMPACTO E DELICADO NO HEADER (PADRÃO LUXO INTERNACIONAL)
   Inspiração: Violet Grey, Byrdie, Vogue Beauty, Rose Inc, Goop
   ========================================================================== */
@keyframes pulseMicroDot {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(191, 40, 78, 0.7);
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(191, 40, 78, 0);
  }
  100% {
    transform: scale(0.85);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(191, 40, 78, 0);
  }
}

.header-cta-btn,
button.header-cta-btn.btn-open-order {
  background: #ffffff !important;
  color: var(--rose-wine) !important;
  border: 1px solid rgba(191, 40, 78, 0.35) !important;
  padding: 3.5px 11px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 9.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 1px 4px rgba(82, 22, 37, 0.05) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
  height: 26px !important;
  animation: none !important;
}

.header-cta-btn::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--rose-primary);
  animation: pulseMicroDot 2s infinite ease-in-out;
  flex-shrink: 0;
}

.header-cta-btn:hover,
button.header-cta-btn.btn-open-order:hover {
  background: var(--rose-primary) !important;
  color: #ffffff !important;
  border-color: var(--rose-primary) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(191, 40, 78, 0.25) !important;
}

.header-cta-btn:hover::before {
  background-color: #ffffff;
}

/* ==========================================================================
   BARRA DE CATEGORIAS EDITORIAL (HORIZONTAL RIBBON LUXO)
   ========================================================================== */
.category-nav-bar {
  background-color: #fffbf9;
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 24px;
}

.category-nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}

.category-nav-inner::-webkit-scrollbar {
  display: none;
}

.cat-nav-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
  flex-shrink: 0;
}

.cat-nav-item {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  flex-shrink: 0;
  letter-spacing: 0.2px;
}

.cat-nav-item:hover {
  color: var(--rose-primary);
  background-color: var(--rose-soft);
}

.cat-nav-item.active {
  color: var(--rose-deep);
  background-color: #fcecef;
  font-weight: 700;
  border: 1px solid var(--rose-border);
}

/* ==========================================================================
   MAGAZINE COVER SECTION — THE COVER STORY & DISPATCHES (LUXURY EDITORIAL)
   ========================================================================== */
.magazine-cover-section {
  background: linear-gradient(180deg, #ffffff 0%, #fdf5f6 60%, #fffbf9 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 36px 24px 40px;
}

.magazine-cover-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.32fr 0.88fr;
  gap: 32px;
  align-items: stretch;
}

/* Lado Esquerdo: Dossiê de Capa Principal */
.cover-story-main {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(82, 22, 37, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cover-story-main:hover {
  box-shadow: 0 16px 40px rgba(82, 22, 37, 0.09);
}

.cover-story-media {
  position: relative;
  display: block;
  height: 290px;
  overflow: hidden;
  background-color: var(--bg-alt);
}

.cover-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cover-story-main:hover .cover-story-media img {
  transform: scale(1.03);
}

.cover-story-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(82, 22, 37, 0.92);
  backdrop-filter: blur(6px);
  color: #fff4f6;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cover-story-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cover-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--rose-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.cover-title {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.25;
  color: var(--rose-wine);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.cover-title a:hover {
  color: var(--rose-primary);
}

.cover-excerpt {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.cover-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.cover-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar-mini {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-border);
}

.cover-author .author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--rose-wine);
  display: block;
}

.cover-author .author-title {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.cover-read-btn {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-primary-hover));
  color: #ffffff !important;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  box-shadow: 0 3px 12px rgba(191, 40, 78, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cover-read-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(191, 40, 78, 0.35);
}

/* Lado Direito: Destaques da Redação (01, 02, 03) */
.cover-dispatches-sidebar {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(82, 22, 37, 0.04);
}

.dispatches-header {
  border-bottom: 2px solid var(--rose-border);
  padding-bottom: 12px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.dispatches-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--rose-wine);
  letter-spacing: 0.2px;
}

.dispatches-subtitle {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
}

.dispatches-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.dispatch-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, transform 0.2s ease;
  border-bottom: 1px solid var(--border-subtle);
}

.dispatch-item:last-child {
  border-bottom: none;
}

.dispatch-item:hover {
  background-color: var(--bg-alt);
  transform: translateX(3px);
}

.dispatch-num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  min-width: 28px;
}

.dispatch-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dispatch-tag {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--rose-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.dispatch-item-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--rose-wine);
  margin: 0;
}

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

.sidebar-curation-box {
  margin-top: 16px;
  background-color: var(--bg-alt);
  border: 1px dashed var(--rose-border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.sidebar-curation-box .curation-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.sidebar-curation-box strong {
  font-size: 11px;
  color: var(--rose-wine);
  display: block;
  font-weight: 700;
}

.sidebar-curation-box p {
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Faixa de Confiança Editorial */
.editorial-trust-strip {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 24px;
}

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

.trust-item {
  font-size: 11px;
  font-weight: 700;
  color: var(--rose-wine);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   ELEMENTOS TRACEJADOS MODERNOS (A CADA 4 ARTIGOS NO GRID)
   Inspiração: Selos editoriais, pareceres laboratoriais e vouchers de luxo
   ========================================================================== */
.editorial-dashed-break {
  grid-column: 1 / -1;
  border: 2px dashed rgba(191, 40, 78, 0.45);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 20px 0 28px;
  position: relative;
  box-shadow: 0 8px 30px rgba(82, 22, 37, 0.04);
  overflow: hidden;
}

.dashed-corner-stamp {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background-color: #ffffff;
  border: 1px solid var(--rose-border);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.dashed-header-badge {
  display: inline-block;
  background-color: var(--rose-deep);
  color: #fff4f6;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.dashed-break-title {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.3;
  color: var(--rose-wine);
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.dashed-break-subtitle {
  font-size: 14.5px;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* Interstitial 1: Alerta Científico */
.dashed-scientific-alert {
  background: linear-gradient(135deg, #fffcfd 0%, #fdf2f4 100%);
  text-align: center;
}

.dashed-quote-card {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 780px;
  margin: 0 auto 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  text-align: left;
  box-shadow: 0 4px 15px rgba(82, 22, 37, 0.03);
}

.dashed-author-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-border);
  flex-shrink: 0;
}

.dashed-quote-content p {
  font-size: 14px;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 6px;
}

.dashed-quote-content cite {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-dark);
  font-style: normal;
  display: block;
}

.dashed-comparative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 22px;
}

.dashed-comp-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 16px;
  text-align: left;
  border: 1px solid var(--border-subtle);
}

.dashed-comp-item.danger {
  border-left: 4px solid #d93838;
}

.dashed-comp-item.success {
  border-left: 4px solid #2e8b57;
}

.comp-status {
  font-size: 11.5px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.dashed-comp-item.danger .comp-status {
  color: #b32424;
}

.dashed-comp-item.success .comp-status {
  color: #1e7041;
}

.dashed-comp-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.dashed-action-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dashed-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.dashed-action-btn.primary {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-primary-hover));
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(191, 40, 78, 0.25);
}

.dashed-action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191, 40, 78, 0.35);
}

.dashed-action-btn.outline {
  background: #ffffff;
  color: var(--rose-wine) !important;
  border: 1px solid var(--rose-border);
}

.dashed-action-btn.outline:hover {
  border-color: var(--rose-primary);
  color: var(--rose-primary) !important;
  background-color: var(--rose-soft);
}

/* Interstitial 2: Bônus da Leitora */
.dashed-bonus-privilege {
  background: linear-gradient(135deg, #fffcfd 0%, #fef5f6 100%);
  text-align: center;
}

.dashed-bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 22px;
}

.dashed-bonus-card {
  background-color: #ffffff;
  border: 1px dashed var(--rose-border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}

.dashed-bonus-card:hover {
  transform: translateY(-3px);
  border-color: var(--rose-primary);
}

.bonus-tag {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--rose-primary);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

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

.bonus-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.bonus-value {
  font-size: 11px;
  color: var(--gold-dark);
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
}

.bonus-value strong {
  color: #2e8b57;
  text-transform: uppercase;
}

.dashed-trust-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dashed-trust-pills .pill-item {
  font-size: 11px;
  font-weight: 700;
  color: var(--rose-wine);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   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: 900px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 12px;
  }
  .nav-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .magazine-cover-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cover-story-media {
    height: 240px;
  }
  .cover-title {
    font-size: 24px;
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .editorial-dashed-break {
    padding: 26px 18px;
  }
  .dashed-comparative-grid {
    grid-template-columns: 1fr;
  }
  .dashed-bonus-cards-grid {
    grid-template-columns: 1fr;
  }
  .dashed-quote-card {
    flex-direction: column;
    text-align: center;
  }
  .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: 680px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .trust-strip-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .header-cta-btn,
  button.header-cta-btn.btn-open-order {
    padding: 3px 8px !important;
    font-size: 8.5px !important;
    height: 24px !important;
    letter-spacing: 0.5px !important;
  }
  .btn-open-order:not(.header-cta-btn) {
    font-size: 13.5px;
    padding: 14px 18px;
  }
  .cover-title {
    font-size: 21px;
  }
  .cover-story-body {
    padding: 20px 16px;
  }
  .dashed-break-title {
    font-size: 20px;
  }
}
