/* ═══════════════════════════════════════
   DESPERTAR A LA VIDA — styles.css
   Paleta: Azul #4979E9 · Negro #111 · Blanco #fff
   Tipografías: Alexandria (títulos) · Inter (cuerpo)
════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #4979E9;
  --blue-dark: #2e5cd4;
  --blue-light:#e8effe;
  --black:     #111111;
  --gray:      #444;
  --gray-lt:   #f4f6fb;
  --white:     #ffffff;
  --radius:    14px;
  --shadow:    0 8px 32px rgba(73,121,233,.18);
  --font-head: 'Alexandria', sans-serif;
  --font-body: 'Inter', sans-serif;
  --trans:     .3s cubic-bezier(.4,0,.2,1);
}

html { 
  scroll-behavior: smooth; 
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--gray-lt);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
  border: 3px solid var(--gray-lt);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue-dark);
}

/* Selection */
::selection {
  background: var(--blue);
  color: var(--white);
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

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

/* ─── ANIMATION ─── */
.fade-up { 
    opacity: 1; 
    transform: none; 
    transition: opacity .7s var(--trans), transform .7s var(--trans); 
}

.js-enabled .fade-up:not(.visible) { 
    opacity: 0; 
    transform: translateY(36px); 
}

.fade-up.visible { 
    opacity: 1; 
    transform: none; 
}
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }

/* ─── CHIPS ─── */
.chip {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.chip-white {
  background: rgba(255,255,255,.18);
  color: var(--white);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
}
.btn-primary  { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-ghost    { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* Acrostic Fold */
.acrostic-fold {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.acrostic-fold.expanded {
  max-height: 1200px;
}

/* QR Card */
.qr-fold {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}
.qr-fold.expanded {
  max-height: 500px;
  margin-top: 24px;
}
.qr-card {
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(37,211,102,.15);
  display: inline-block;
  text-align: center;
  border: 1px solid rgba(37,211,102,.1);
}
.qr-img {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto 16px;
  border-radius: 12px;
}
.qr-hint {
  font-size: .85rem;
  color: var(--gray);
  max-width: 220px;
  margin: 0 auto;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn-row.centered { justify-content: center; }

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 48px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(1.7rem,3.5vw,2.6rem); margin-bottom: 12px; }
.text-center { text-align: center; }

/* ═══════════════════════════
   HEADER
═══════════════════════════ */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.logo small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray);
  margin-top: 2px;
  letter-spacing: 0.05em;
  text-transform: none;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--trans);
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav .nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 99px;
}
.main-nav .nav-cta:hover { background: var(--blue-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--blue); cursor: pointer; }

/* ═══════════════════════════
   HERO — Slide 1
═══════════════════════════ */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #0a1628 0%, #1a2e5a 50%, #0a1628 100%);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-book { display: flex; justify-content: center; }
.book-img {
  max-height: 520px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transform: rotate(-3deg) scale(1.02);
  transition: transform .4s;
}
.book-img:hover { transform: rotate(0deg) scale(1.05); }

.hero-text { color: var(--white); }
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 480px; }

/* ═══════════════════════════
   EL CORAZÓN — Slide 2
═══════════════════════════ */
.heart { padding: 100px 0; background: var(--white); }
.heart-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.heart-img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }
.section-lead { color: var(--gray); margin-bottom: 32px; }

/* Acróstico */
.coming-soon {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  padding: 48px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.acrostic-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--blue);
  margin-bottom: 10px;
}
.acrostic-lines { margin-bottom: 20px; }
.acrostic-pair { display: flex; gap: 10px; margin: 5px 0; }
.letter {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  width: 28px;
  flex-shrink: 0;
}
.phrase { font-size: .95rem; color: var(--black); align-self: center; }
.acrostic-divider {
  text-align: center;
  color: #e84c8b;
  font-size: 1.2rem;
  margin: 16px 0;
}
.impacto-block { margin-top: 24px; }
.impacto-label {
  color: var(--blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.impacto-intro {
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.testimonials { display: flex; flex-direction: column; gap: 12px; }
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(73,121,233,.1);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -4px; left: 14px;
  font-size: 3rem;
  color: var(--blue);
  opacity: .2;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial p {
  font-size: .9rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-author {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
}

/* ═══════════════════════════
   AGRADECIMIENTO — Slide 3
═══════════════════════════ */
.thanks {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #edf2ff 100%);
  overflow: hidden;
}

.pioneers-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pioneer-photo-wrapper {
  position: relative;
  z-index: 1;
}

.pioneer-group-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 48, 143, 0.25);
  transition: transform 0.5s ease;
}

.pioneer-photo-wrapper:hover .pioneer-group-img {
  transform: scale(1.02);
}

.photo-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.2;
}

.pioneer-emotive-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--blue-dark);
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 300;
}

.pioneers-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.pioneer-tag {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.pioneer-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background: var(--blue);
  color: var(--white);
}

.pioneer-tag i {
  color: var(--gold);
}

.pioneer-tag:hover i {
  color: var(--white);
}

.pioneer-quote {
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 25px;
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--gray);
}

.pioneer-quote cite {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-style: normal;
  color: var(--blue-dark);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .pioneers-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .pioneers-wall {
    justify-content: center;
  }
  .pioneer-quote {
    text-align: left;
  }
}

/* ═══════════════════════════
   AUDIOLIBRO — Slide 4
═══════════════════════════ */
.audiobook { padding: 100px 0; background: var(--white); }
.audiobook-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.audiobook-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem,3vw,2.4rem);
  margin-bottom: 16px;
}
.audiobook-text p { color: var(--gray); margin-bottom: 28px; }
.platform-list { display: flex; flex-direction: column; gap: 10px; }
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .92rem;
  background: var(--blue);
  color: var(--white);
  transition: var(--trans);
  width: fit-content;
}
.platform-btn:hover { background: var(--blue-dark); transform: translateX(4px); }
.platform-btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.platform-btn--ghost:hover { background: var(--blue); color: var(--white); }

.audiobook-img img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

/* ═══════════════════════════
   BSO — Slide 5
═══════════════════════════ */
.bso {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2e5a 100%);
  color: var(--white);
}
.bso .section-header h2 { color: var(--white); }
.bso .section-header p  { color: rgba(255,255,255,.75); }
.bso-hero-img {
  max-width: 320px;
  margin: 0 auto 56px;
}
.bso-hero-img img { border-radius: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.bso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bso-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  color: var(--white);
  transition: var(--trans);
}
.bso-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.bso-card i { font-size: 2.4rem; margin-bottom: 12px; color: var(--blue); }
.bso-card h3 { font-family: var(--font-head); margin-bottom: 6px; }
.bso-card span { font-size: .82rem; color: rgba(255,255,255,.6); }

/* ═══════════════════════════
   PRESENTACIÓN — Slide 6
═══════════════════════════ */
.presentation { padding: 100px 0; background: var(--gray-lt); }
.presentation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}
.pres-photo-main img,
.pres-photo-second img {
  border-radius: 16px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform var(--trans);
}
.pres-photo-main img:hover,
.pres-photo-second img:hover { transform: scale(1.02); }
.photo-caption {
  font-size: .82rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
}

.pres-conference {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
}
.conference-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}
.pres-conference h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem,2.5vw,2rem);
  margin-bottom: 8px;
}
.pres-conference > p { color: var(--gray); margin-bottom: 20px; }
.speaker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 1rem;
}
.tag-inv {
  background: var(--blue-light);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 99px;
}
.author-link { margin-top: 28px; }
.author-link p { color: var(--gray); margin-bottom: 10px; }
.author-inline-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--trans);
}
.author-inline-link:hover {
  color: var(--blue-dark);
  text-decoration: none;
}

/* ═══════════════════════════
   SOBRE EL AUTOR — Slide 7
═══════════════════════════ */

/* ═══════════════════════════
   HUB DE EVENTOS Y COMUNIDAD
   Unificación de Eventos y Blogtour
═══════════════════════════ */
.events-community {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white), var(--gray-lt));
}

.hub-header {
    margin-bottom: 60px;
}

.hub-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
}

.hub-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: var(--trans);
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.card-header i {
    font-size: 2rem;
    color: var(--blue);
}

.card-header h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin: 0;
}

/* Event List en el Hub */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 20px;
}

.events-list::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), var(--gold-light), transparent);
    opacity: 0.3;
}

.event-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.event-item::before {
    content: '';
    position: absolute;
    left: -24px; top: 24px;
    width: 10px; height: 10px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--blue);
}

.event-item:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

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

.event-date, .event-status {
    background: var(--blue-dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status {
    background: var(--primary);
}

.event-info h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--blue-dark); }
.event-info p { font-size: 0.9rem; color: var(--gray); margin: 0; line-height: 1.4; }

/* Comunidad y Blogtour en el Hub */
.hub-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.hub-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hub-divider {
    height: 1px;
    background: rgba(0,0,0,0.05);
    margin: 8px 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hub-actions .btn {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hub-actions .btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 12px 24px rgba(73,121,233,0.3);
}

.hub-footer {
    margin-top: 60px;
}

/* QR en el Hub */
.qr-fold {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}
.qr-fold.expanded {
    max-height: 400px;
    opacity: 1;
    margin-top: 24px;
}
.qr-card {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.qr-img {
    width: 180px;
    height: 180px;
    margin-bottom: 12px;
}
.qr-hint {
    font-size: 0.85rem !important;
    color: var(--gray);
    margin: 0 !important;
}

@media (max-width: 992px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }
    .hub-card {
        padding: 32px;
    }
}
.blogtour-card h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem,3vw,2.2rem);
  margin-bottom: 16px;
}
.blogtour-card p { color: var(--gray); max-width: 680px; margin: 0 auto; }

/* ═══════════════════════════
   MAYORISTAS
═══════════════════════════ */
.wholesale {
  padding: 100px 0;
  background: linear-gradient(135deg,#0a1628,#1a2e5a);
}
.wholesale-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: var(--white);
  transition: var(--trans);
}
.ws-icon { font-size: 2.8rem; color: var(--blue); margin-bottom: 16px; }
.wholesale-card h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; }
.wholesale-card p  { color: rgba(255,255,255,.7); margin-bottom: 28px; }
.ws-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.ws-form input {
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .95rem;
  width: 240px;
  outline: none;
  transition: var(--trans);
}
.ws-form input::placeholder { color: rgba(255,255,255,.5); }
.ws-form input:focus { border-color: var(--blue); background: rgba(255,255,255,.15); }
.ws-error {
  display: none;
  margin-top: 14px;
  color: #ff8080;
  font-size: .88rem;
}
.ws-error a { color: #ffb3b3; text-decoration: underline; }

/* Data panel */
.wholesale-data {
  display: none;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
  animation: fadeIn .6s ease;
}
@keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
.ws-data-header { text-align: center; margin-bottom: 40px; }
.ws-data-header .ws-icon { color: var(--blue); }
.ws-data-header h2 { font-family: var(--font-head); font-size: 1.8rem; margin: 10px 0 8px; }
.ws-data-header p { color: var(--gray); }

.ws-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.ws-spec {
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: .9rem;
}
.ws-spec strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 4px; }
.ws-spec.highlight { background: var(--blue); color: var(--white); }
.ws-spec.highlight strong { color: rgba(255,255,255,.7); }

.ws-note {
  display: flex;
  gap: 12px;
  background: #fdf6e3;
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
  margin-bottom: 28px;
}
.ws-note i { color: var(--blue); margin-top: 2px; }
.ws-note p { font-size: .88rem; color: #7c6f41; line-height: 1.5; margin: 0; }

}

.press-downloads .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(73, 121, 233, 0.1);
}

.press-downloads .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(73, 121, 233, 0.2);
  background: var(--blue) !important;
  color: var(--white) !important;
}

@media (max-width: 600px) {
  .press-downloads {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════
   RECOMENDACIONES — Shorts
═══════════════════════════ */
.recomendaciones { padding: 100px 0; background: var(--gray-lt); }
.recomendaciones .section-header p { color: var(--gray); }
.rec-tagline {
  display: inline-block;
  margin: 20px auto 0;
  max-width: 620px;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(73,121,233,.2);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 24px;
  line-height: 1.6;
  text-align: left;
  box-shadow: 0 2px 12px rgba(73,121,233,.08);
}

.shorts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.short-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.short-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(73,121,233,.22);
}
/* Ratio 9:16 para Shorts verticales */
.short-frame {
  position: relative;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.short-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.short-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  transition: var(--trans);
}
.short-link:hover { background: var(--blue); color: var(--white); }
.short-link i { font-size: 1.1rem; }

@media (max-width: 600px) {
  .shorts-grid { grid-template-columns: 1fr; max-width: 340px; }
}

/* ═══════════════════════════
   FOOTER — Slide 8
═══════════════════════════ */
.site-footer {
  background: #080f1e;
  color: var(--white);
  padding: 64px 0 36px;
}
.footer-title {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.footer-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: var(--trans);
}
.footer-links a:hover { background: rgba(73,121,233,.25); border-color: var(--blue); transform: translateY(-4px); }
.footer-links i { font-size: 1.8rem; color: var(--blue); }
.footer-links span { font-weight: 600; font-size: .95rem; }
.footer-links small { color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-copy { text-align: center; color: rgba(255,255,255,.35); font-size: .82rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 900px) {
  .hero-inner,
  .heart-layout,
  .audiobook-inner,
  .presentation-inner { grid-template-columns: 1fr; gap: 40px; }

  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-book { order: -1; }
  .book-img { max-height: 340px; }

  .bso-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .ws-specs { grid-template-columns: 1fr; }

  .main-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid #eee; padding: 20px 24px; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 14px; }
  .nav-toggle { display: block; }

  .thanks-card { padding: 36px 24px; }
  .pres-conference { padding: 32px 24px; }
  .blogtour-card { padding: 36px 24px; }
  .wholesale-card { padding: 36px 24px; }
  .wholesale-data { padding: 36px 24px; }
}

.ws-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

#btn-copy-email {
  transition: all 0.3s ease;
  font-weight: 500;
}

#btn-copy-email:active {
  transform: scale(0.98);
}


@media (max-width: 480px) {
  .bso-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
}

/* ═══════════════════════════
   MODAL — Summary
═══════════════════════════ */
.modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.modal.open { opacity: 1; visibility: visible; }

.modal-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  background: #fdfaf3; /* Parchment/Paper color */
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}
.modal.open .modal-content { transform: translateY(0); }

.modal-close {
  position: sticky;
  top: 20px;
  left: calc(100% - 60px);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: var(--trans);
}
.modal-close:hover { background: var(--blue); transform: rotate(90deg); }

/* Letter Paper Styling (Optimized for Press Room) */
.letter-paper {
  padding: 50px 60px;
  color: #2c3e50;
  font-family: 'Crimson Text', serif;
  line-height: 1.8;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
}

/* Specific Press Styles */
.letter-header h3 {
  font-family: var(--font-title);
  letter-spacing: 1px;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--gold-light);
  display: inline-block;
  padding-bottom: 5px;
}

.letter-body h4 {
  color: var(--blue-dark);
  border-left: 4px solid var(--gold);
  padding-left: 15px;
  margin-top: 35px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .letter-paper { padding: 40px 24px; }
}

.letter-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 20px;
}
.letter-date {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 12px;
  font-style: italic;
}
.letter-intro {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.letter-body h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: #1a2e5a;
  margin: 40px 0 16px;
  position: relative;
}
.letter-body h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 40px; height: 2px;
  background: var(--blue);
}

/* ─── GABINETE DE PRENSA (MODERN) ─── */
#btn-toggle-press {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#btn-toggle-press:hover {
  background: rgba(73, 121, 233, 0.1) !important;
  transform: translateY(-2px);
}

#press-content-fold {
  overflow: hidden;
  animation: slideDown 0.4s ease-out forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

#press-toggle-icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.letter-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.letter-highlight {
  background: rgba(73, 121, 233, 0.05);
  border-left: 3px solid var(--blue);
  padding: 24px 30px;
  margin: 32px 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

.letter-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px dashed rgba(0,0,0,0.1);
  text-align: center;
  font-size: 1.1rem;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(73,121,233,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .4s cubic-bezier(.4,0,.2,1);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(73,121,233,.4);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }
}
/* ─── GABINETE DE PRENSA & LETTER ACCORDION ─── */
.letter-accordion-item {
    margin: 20px auto;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.letter-header-fold {
    background: #fff;
    padding: 30px;
    position: relative;
    cursor: pointer;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    text-align: left;
}

.letter-header-fold:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* El Pliegue (Fold Corner) */
.letter-fold-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent transparent #e0e0e0 transparent;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.letter-header-fold:hover .letter-fold-corner {
    border-width: 0 50px 50px 0;
}

.letter-accordion-item.active .letter-header-fold {
    border-radius: 12px 12px 0 0;
    box-shadow: none;
    border-bottom: 1px solid #f1f3f5;
}

.letter-accordion-item.active .letter-fold-corner {
    border-color: transparent transparent var(--gold) transparent;
}

.letter-date {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
}

.letter-intro {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.letter-title-main {
    margin-top: 10px;
    color: var(--blue-dark);
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.letter-toggle-icon {
    transition: transform 0.4s ease;
    font-size: 1rem;
    color: var(--gold);
}

.letter-accordion-item.active .letter-toggle-icon {
    transform: rotate(180deg);
}

.letter-body-collapsed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.letter-accordion-item.active .letter-body-collapsed {
    max-height: 3000px; /* High enough to contain the letter */
}

/* ═══════════════════════════
   PRESENTACIÓN BIBLIOTECA
   (In Slide 2 - Heart)
═══════════════════════════ */
.presentation-box {
    margin-top: 24px;
    background: var(--white);
    border-radius: 16px;
    padding: 4px;
    box-shadow: 0 10px 25px rgba(0, 48, 143, 0.08);
    border: 1px solid rgba(0, 48, 143, 0.05);
}

.btn-presentation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: var(--blue-dark);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-presentation:hover {
    background: rgba(0, 48, 143, 0.03);
}

.presentation-fold {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.presentation-fold.active {
    max-height: 500px;
}

.presentation-details {
    padding: 15px 20px 20px;
    border-top: 1px dashed #eee;
    text-align: left;
}

.presentation-details h4 {
    font-family: var(--font-head);
    color: var(--blue-dark);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

/* ═══════════════════════════════════
   PRESENTACIÓN SLIDE (GRID)
════════════════════════════════════ */
.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.presentation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-presenter {
    position: relative;
    grid-column: span 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.presenter-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-presenter:hover .presenter-img {
    transform: scale(1.05);
}

.presenter-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--blue-dark);
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.event-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    grid-column: span 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.presentation-lead {
    font-size: 1.2rem;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 30px;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.point h4 {
    color: var(--blue-dark);
    margin-bottom: 5px;
}

.point p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* ═══════════════════════════════════
   ROADMAP (CALENDARIO)
════════════════════════════════════ */
.roadmap {
    padding: 100px 0;
    background: #f8faff;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-date {
    position: absolute;
    top: 20px;
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--blue-dark);
    z-index: 1;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -40px;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.event-type {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 700;
}

/* ═══════════════════════════════════
   KIT ACCORDION (DISTRIBUIDORES)
════════════════════════════════════ */
.kit-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kit-item {
    border: 1px solid #eef0f2;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.kit-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.kit-header:hover {
    background: #f8faff;
}

.kit-header h4 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--blue-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.kit-header i.fa-file-alt, 
.kit-header i.fa-book-open, 
.kit-header i.fa-file-contract, 
.kit-header i.fa-image {
    color: var(--gold);
}

.kit-toggle-icon {
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: transform 0.3s ease;
}

.kit-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.kit-item.active .kit-content {
    max-height: 400px;
}

.kit-item.active .kit-toggle-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.kit-body {
    padding: 0 25px 25px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.kit-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .presentation-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left !important;
    }
    
    .timeline-item .timeline-date {
        left: -10px !important;
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
}
/* ─── KIT PROMOCIONAL & MARKETING DASHBOARD ─── */
.kit-item.active .kit-content {
    max-height: 2000px; /* Allow for more content in the promotional kit */
}

.marketing-copy-card {
    background: #f1f5f9;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 6px solid var(--gold);
    transition: 0.3s;
}

.marketing-copy-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.platform-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--blue-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-text-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
    white-space: pre-line;
    border: 1px solid #e2e8f0;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn-copy-kit {
    background: var(--blue);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-copy-kit:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.banner-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.banner-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.banner-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.banner-card .asset-info {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 10px;
    display: block;
}
