/* ==========================================================================
   SITE OFICIAL — INGRID AQUILINO
   Direção Visual: Clean, Editorial Contemporâneo & Cores Sólidas
   Inspiração: Design Editorial Direto & Minimalista (Primeira Orelha Style)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CORES SÓLIDAS
   -------------------------------------------------------------------------- */
:root {
  /* ==========================================================================
     PALETA HARMONIOSA — DOIS MUNDOS, UM EQUILÍBRIO
     A suavidade do rosa, a profundidade do vinho, o frescor do verde e o aconchego do café.
     Elegante • Natural • Acolhedora
     ========================================================================== */
  
  /* Cores Oficiais da Paleta */
  --palette-old-rose: #d58198;
  --palette-rosewood: #ae5369;
  --palette-sand: #a89c70;
  --palette-ebony: #515335;
  --palette-dark-coffee: #503429;
  --palette-burgundy: #441015;

  /* Fundos & Superfícies Acolhedoras */
  --bg-page: #faf8f5;
  --bg-card: #ffffff;
  --bg-subtle: #f3efe9;
  --bg-alt: #ece6dc;
  --bg-dark: #231518; /* Fusão elegante de Burgundy & Dark Coffee */

  /* Destaques Rosas (Rosewood & Old Rose) */
  --color-rose: #ae5369;             /* Rosewood principal */
  --color-rose-hover: #923e53;       /* Rosewood profundo */
  --color-rose-light: #d58198;       /* Old Rose */
  --color-rose-subtle: #faf0f3;      /* Suave e delicado */
  --color-rose-border: #eccbd4;      /* Borda delicada */

  /* Destaques Tons Naturais (Sand / Areia) */
  --color-gold: #a89c70;             /* Sand da paleta */
  --color-gold-hover: #8f845a;       /* Sand escuro */
  --color-gold-subtle: #f7f5ed;      /* Sand suave */
  --color-gold-border: #ddd6c2;      /* Borda Sand */

  /* Tons de Verde & Natureza (Ebony) */
  --color-ebony: #515335;            /* Ebony da paleta */
  --color-ebony-subtle: #eff0e8;
  --color-ebony-border: #c6c9b5;

  /* Tons Quentes & Aconchegantes (Dark Coffee & Burgundy) */
  --color-coffee: #503429;           /* Dark Coffee */
  --color-burgundy: #441015;         /* Burgundy */
  --color-amazon: #c87a1e;
  --color-amazon-hover: #ac6614;

  /* Textos & Tipografia com Nuance Quente da Paleta */
  --text-main: #241a1d;              /* Preto nobre café/vinho */
  --text-muted: #665a5e;             /* Cinza quente suave */
  --text-light: #94888c;             /* Muted light */
  --text-inverse: #ffffff;

  /* Bordas Sólidas */
  --border-light: #e6ded4;
  --border-medium: #d6ccbf;
  --border-dark: #3a2529;

  /* Sombras Sutis & Limpas */
  --shadow-subtle: 0 2px 10px rgba(68, 16, 21, 0.04);
  --shadow-card: 0 8px 24px rgba(68, 16, 21, 0.06);
  --shadow-hover: 0 14px 32px rgba(68, 16, 21, 0.12);

  /* Layout */
  --container-width: 1180px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: 200ms ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: var(--color-rose);
  color: #ffffff;
}

/* Skip Link de Acessibilidade */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 99999;
  padding: 10px 16px;
  background: var(--text-main);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --------------------------------------------------------------------------
   3. TIPOGRAFIA & ELEMENTOS COMUNS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(22px, 2.6vw, 30px);
}

p {
  margin-top: 0;
  margin-bottom: 1.2em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container-width));
  margin-inline: auto;
}

/* Tag Labels Sólidas */
.tag-label {
  display: inline-block;
  padding: 4px 10px;
  background: var(--color-rose-subtle);
  color: var(--color-rose);
  border: 1px solid var(--color-rose-border);
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tag-label-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-gold-border);
  border-color: rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   4. BOTÕES SÓLIDOS & AÇÕES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn-rose {
  background-color: var(--color-rose);
  color: #ffffff;
  border: 1px solid var(--color-rose);
}

.btn-rose:hover {
  background-color: var(--color-rose-hover);
  border-color: var(--color-rose-hover);
  color: #ffffff;
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background-color: var(--bg-subtle);
  border-color: var(--text-main);
  color: var(--text-main);
}

.btn-amazon-solid {
  background-color: var(--color-amazon);
  color: #ffffff;
  border: 1px solid var(--color-amazon);
  font-weight: 800;
}

.btn-amazon-solid:hover {
  background-color: var(--color-amazon-hover);
  border-color: var(--color-amazon-hover);
  color: #ffffff;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-medium);
}

.btn-outline-dark:hover {
  border-color: var(--color-rose);
  color: var(--color-rose);
}

/* --------------------------------------------------------------------------
   5. TOP BAR & CABEÇALHO
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
}

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

.top-bar-text {
  margin: 0;
  color: #d1cbd8;
}

.top-bar-text strong {
  color: #ffffff;
}

.top-bar-text em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  color: var(--color-rose-border);
}

.top-bar-link {
  color: var(--color-gold-border);
  font-weight: 700;
}

.top-bar-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(251, 251, 249, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

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

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

.brand-monogram {
  width: 32px;
  height: 32px;
  background-color: var(--color-rose);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-xs);
}

.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-main);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--color-rose);
  border-bottom-color: var(--color-rose);
}

/* Destaque Elegante para o Link Eventos na Barra */
.main-nav a.nav-highlight {
  background-color: var(--color-rose-subtle);
  color: var(--color-rose);
  border: 1px solid var(--color-rose-border);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.main-nav a.nav-highlight::after {
  content: "✦";
  font-size: 10px;
  color: var(--color-rose-light);
  transition: transform var(--transition), color var(--transition);
}

.main-nav a.nav-highlight:hover,
.main-nav a.nav-highlight:focus-visible {
  background-color: var(--color-rose);
  color: #ffffff;
  border-color: var(--color-rose);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(174, 83, 105, 0.28);
}

.main-nav a.nav-highlight:hover::after,
.main-nav a.nav-highlight:focus-visible::after {
  color: #ffffff;
  transform: rotate(45deg);
}

.main-nav a.nav-highlight.active {
  background-color: var(--color-rose);
  color: #ffffff;
  border-color: var(--color-rose);
  box-shadow: 0 4px 12px rgba(174, 83, 105, 0.25);
}

.main-nav a.nav-highlight.active::after {
  color: #ffffff;
}

.footer-links a.footer-highlight {
  color: var(--color-rose);
  font-weight: 700;
}

.footer-links a.footer-highlight:hover {
  color: var(--color-rose-hover);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px auto;
  transition: transform var(--transition);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (Clean & Direto)
   -------------------------------------------------------------------------- */
.hero-clean {
  padding: 60px 0 70px;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
}

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

.hero-clean-title {
  margin-bottom: 18px;
}

.hero-clean-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-clean-lead strong {
  color: var(--text-main);
}

.hero-clean-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.highlight-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}

.highlight-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-rose);
  margin-bottom: 2px;
}

.highlight-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* Foto da Autora no Hero */
.author-photo-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-card);
}

.author-photo-img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-sm);
  background-color: var(--bg-subtle);
}

.author-photo-caption {
  padding: 12px 6px 4px;
}

.author-photo-caption strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  color: var(--text-main);
}

.author-photo-caption span {
  font-size: 12px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. FAIXA DE VALORES / DIFERENCIAIS
   -------------------------------------------------------------------------- */
.feature-strip {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

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

.strip-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-rose);
  line-height: 1;
}

.strip-item h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.strip-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO VALENTINA EM DESTAQUE (Card Amplo)
   -------------------------------------------------------------------------- */
.section-book-spotlight {
  padding: 90px 0;
  background-color: var(--bg-subtle);
}

.spotlight-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  box-shadow: var(--shadow-card);
}

.spotlight-cover-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spotlight-cover-frame {
  width: 100%;
  aspect-ratio: 0.68;
  border-radius: 4px 10px 10px 4px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 8px 14px 28px rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
}

.spotlight-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-edition-tag {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spotlight-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.badge {
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-rose {
  background-color: var(--color-rose-subtle);
  color: var(--color-rose);
  border: 1px solid var(--color-rose-border);
}

.badge-neutral {
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.spotlight-book-title {
  font-size: clamp(38px, 4.5vw, 56px);
  margin-bottom: 6px;
}

.spotlight-author-line {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.spotlight-synopsis p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.spotlight-synopsis strong {
  color: var(--text-main);
}

.spotlight-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}

.meta-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.spotlight-buy-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   9. VITRINE DE LIVROS
   -------------------------------------------------------------------------- */
.section-books {
  padding: 90px 0;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
}

.section-header-clean {
  margin-bottom: 48px;
}

.section-header-clean p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: -6px;
}

.books-clean-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.book-clean-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition);
}

.book-clean-card:hover {
  border-color: var(--color-rose-border);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.book-clean-thumb {
  width: 100%;
  aspect-ratio: 0.68;
  border-radius: 4px 8px 8px 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.08);
}

.book-clean-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-future {
  background-color: var(--bg-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.future-icon {
  font-size: 24px;
  color: var(--color-gold);
}

.book-clean-kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-rose);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.book-clean-body h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.book-clean-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. SOBRE A AUTORA (Clean & Direto)
   -------------------------------------------------------------------------- */
.section-about-clean {
  padding: 90px 0;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
}

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

.about-clean-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background-color: var(--bg-subtle);
  aspect-ratio: 0.85;
  box-shadow: var(--shadow-card);
}

.about-clean-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-clean-badge {
  margin-top: 14px;
  padding: 12px 18px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-clean-badge strong {
  font-size: 14px;
  color: var(--text-main);
}

.about-clean-badge span {
  font-size: 12px;
  color: var(--text-muted);
}

.about-text-lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 16px;
}

.about-clean-copy p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.info-cell strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-rose);
  margin-bottom: 4px;
}

.info-cell span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.about-clean-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   11. DO CADERNO DA AUTORA (BASTIDORES)
   -------------------------------------------------------------------------- */
.section-magazine {
  padding: 90px 0;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
}

.magazine-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.magazine-card-clean {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition);
}

.magazine-card-clean:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-card);
}

.magazine-card-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.magazine-card-clean h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

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

.magazine-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-rose);
}


/* --------------------------------------------------------------------------
   13. CONTATO & REDES SOCIAIS
   -------------------------------------------------------------------------- */
.section-contact {
  padding: 80px 0;
  background-color: var(--bg-card);
  text-align: center;
}

.contact-box {
  max-width: 680px;
  margin-inline: auto;
}

.contact-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.social-pills-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-pill {
  padding: 8px 16px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.social-pill:hover {
  background-color: var(--color-rose-subtle);
  border-color: var(--color-rose-border);
  color: var(--color-rose);
}

/* --------------------------------------------------------------------------
   14. FOOTER CLEAN
   -------------------------------------------------------------------------- */
.site-footer-clean {
  background-color: var(--bg-page);
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
  font-size: 13px;
}

.footer-clean-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--text-main);
}

.footer-left p {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--color-rose);
}

.footer-right p {
  color: var(--text-light);
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. BOTÃO WHATSAPP FLUTUANTE CLEAN
   -------------------------------------------------------------------------- */
.whatsapp-float-clean {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float-clean:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 6px 14px rgba(0, 0, 0, 0.18);
}

.whatsapp-float-clean svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: currentColor;
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. REVEAL ANIMATIONS SUAVES
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
  transition-delay: var(--delay, 0ms);
}

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

/* --------------------------------------------------------------------------
   17. RESPONSIVIDADE
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-clean-grid,
  .about-clean-grid,
  .spotlight-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spotlight-card {
    padding: 32px;
  }

  .spotlight-cover-side {
    max-width: 260px;
    margin-inline: auto;
  }

  .feature-strip-grid,
  .magazine-clean-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .books-clean-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-card);
    display: none;
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a.nav-highlight {
    align-self: flex-start;
  }

  .header-action {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }

  .hero-highlights,
  .about-info-grid {
    grid-template-columns: 1fr;
  }

  .book-clean-card {
    grid-template-columns: 1fr;
  }

  .book-clean-thumb {
    max-width: 140px;
  }


  .footer-clean-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   18. PÁGINA DE EVENTOS (EDITORIAL CLEAN)
   -------------------------------------------------------------------------- */
.main-nav a.active {
  color: var(--color-rose);
  font-weight: 700;
}

.events-hero {
  padding: 60px 0 36px;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-light);
}

.events-hero-inner {
  max-width: 780px;
}

.events-hero-title {
  margin-bottom: 14px;
}

.events-hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.events-hero-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Container de Eventos */
.events-main-section {
  padding: 50px 0 80px;
}

/* Estado Vazio Elegante (Quando não há eventos cadastrados) */
.events-empty-state {
  text-align: center;
  padding: 80px 24px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  max-width: 680px;
  margin: 0 auto;
}

.empty-state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-rose-subtle);
  color: var(--color-rose);
  font-size: 22px;
  margin-bottom: 20px;
}

.events-empty-state h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.events-empty-state p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 24px;
}

/* Seção de Cada Evento */
.event-section {
  padding: 30px 0 40px;
}

.event-header {
  margin-bottom: 32px;
  max-width: 860px;
}

.event-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.event-type-badge {
  display: inline-block;
  padding: 3px 9px;
  background: var(--color-rose-subtle);
  color: var(--color-rose);
  border: 1px solid var(--color-rose-border);
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
}

.event-title {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 12px;
  color: var(--text-main);
}

.event-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 760px;
}

/* Subcabeçalhos de Bloco dentro do Evento */
.event-sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.event-sub-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.event-sub-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-rose);
}

/* --------------------------------------------------------------------------
   19. INSTAGRAM PREVIEWS (ASPECTO VERTICAL 9:16 - VÍDEOS & REELS)
   -------------------------------------------------------------------------- */
.event-instagram-block {
  margin-bottom: 48px;
}

.event-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.instagram-preview-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #211c26;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.instagram-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(22, 19, 25, 0.65);
  backdrop-filter: blur(6px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.instagram-play-indicator svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-left: 3px;
}

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 19, 25, 0.05) 0%, rgba(22, 19, 25, 0.35) 50%, rgba(22, 19, 25, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0.95;
  transition: opacity var(--transition), background var(--transition);
  z-index: 1;
}

.instagram-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.instagram-preview-card:hover .instagram-preview-img {
  transform: scale(1.04);
}

.instagram-preview-card:hover .instagram-play-indicator {
  background-color: var(--color-rose);
  border-color: var(--color-rose);
  transform: translate(-50%, -50%) scale(1.12);
}

.instagram-overlay-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #ffffff;
}

.instagram-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.instagram-badge-chip svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.instagram-cta-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gold-border);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.instagram-caption-text {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.4;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   20. CARROSSEL DE FOTOGRAFIAS FLUIDO (ALTURA COMPLETA 9:16 + AUTOPLAY)
   -------------------------------------------------------------------------- */
.event-gallery-block {
  margin-bottom: 20px;
}

.carousel-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}

.carousel-sub-hint {
  font-size: 13px;
  color: var(--text-light);
  margin: 2px 0 0;
}

.carousel-nav-buttons {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-btn:hover:not(:disabled) {
  background-color: var(--color-rose);
  border-color: var(--color-rose);
  color: #ffffff;
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.event-carousel-wrapper {
  position: relative;
}

.event-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-medium) transparent;
}

.event-carousel-track::-webkit-scrollbar {
  height: 6px;
}

.event-carousel-track::-webkit-scrollbar-track {
  background: transparent;
}

.event-carousel-track::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--radius-pill);
}

.event-carousel-slide {
  flex: 0 0 auto;
  height: 480px;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.event-carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.event-carousel-slide:hover img {
  transform: scale(1.03);
}

.slide-zoom-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(22, 19, 25, 0.65);
  backdrop-filter: blur(4px);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.slide-zoom-badge svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.event-carousel-slide:hover .slide-zoom-badge,
.event-carousel-slide:focus-visible .slide-zoom-badge {
  opacity: 1;
  transform: scale(1.08);
}

.event-carousel-slide:focus-visible {
  outline: 2px solid var(--color-rose);
  outline-offset: 2px;
}

/* Divisor Editorial Entre Eventos */
.event-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 50px 0;
  position: relative;
}

.event-divider::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-page);
  padding: 0 12px;
  color: var(--color-gold);
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   21. LIGHTBOX MODAL (ACESSIBILIDADE & TOUCH)
   -------------------------------------------------------------------------- */
.events-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: rgba(14, 11, 16, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

.events-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper {
  position: relative;
  max-width: 100%;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-xs);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.lightbox-caption-bar {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  color: #ffffff;
  font-size: 14px;
}

.lightbox-counter {
  font-size: 13px;
  color: var(--color-gold-border);
  font-weight: 700;
}

.lightbox-caption-text {
  color: #d1cbd8;
  font-size: 14px;
  text-align: right;
}

.lightbox-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 10;
}

.lightbox-close-btn:hover {
  background: var(--color-rose);
  transform: scale(1.08);
}

.lightbox-close-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 10;
}

.lightbox-nav-btn:hover {
  background: var(--color-rose);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-nav-btn.prev {
  left: 20px;
}

.lightbox-nav-btn.next {
  right: 20px;
}

.lightbox-nav-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   RESPONSIVIDADE DA PÁGINA DE EVENTOS
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .event-instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .event-carousel-slide {
    height: 420px;
  }

  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav-btn.prev {
    left: 10px;
  }

  .lightbox-nav-btn.next {
    right: 10px;
  }
}

@media (max-width: 720px) {
  .event-instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .events-hero {
    padding: 40px 0 28px;
  }

  .events-hero-lead {
    font-size: 16px;
  }

  .event-meta-row {
    gap: 8px;
  }

  .event-instagram-grid {
    grid-template-columns: 1fr;
    max-width: 290px;
    margin-inline: auto;
  }

  .event-carousel-slide {
    height: 380px;
  }

  .lightbox-close-btn {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .lightbox-nav-btn {
    bottom: 20px;
    top: auto;
    transform: none;
  }

  .lightbox-nav-btn:hover {
    transform: scale(1.08);
  }

  .lightbox-nav-btn.prev {
    left: 20px;
  }

  .lightbox-nav-btn.next {
    right: 20px;
  }

  .lightbox-caption-bar {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .lightbox-caption-text {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
