/* Core Variables & Colors */
:root {
    --bg-primary: #05060b;
    --bg-secondary: #0a0c16;
    --bg-tertiary: #111322;
    --bg-glass: rgba(17, 19, 34, 0.6);
    --gold-primary: #d4af37;
    --gold-light: #f9df88;
    --gold-dark: #b5952f;
    --text-pure: #ffffff;
    --text-muted: #b5bad1;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-pure);
    font-family: var(--font-body);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(20, 25, 45, 0.3) 0%, rgba(5, 6, 11, 1) 100%);
    z-index: -2;
}

a {
    color: var(--text-pure);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Typography */
h1, h2, h3, h4, .title, .logo, .section-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

.title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #f9df88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.btn-ghost {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.btn-ghost:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-pure);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 98px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-pure);
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--gold-primary);
}

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

.cart-link {
    color: var(--gold-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 6, 11, 0.5) 0%, rgba(10, 15, 30, 0.4) 50%, rgba(5, 6, 11, 0.8) 100%);
    mix-blend-mode: normal;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.hero-glass-panel {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: 850px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #cca74b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 1.3rem;
    color: #cca74b;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-description {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-trust-line {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-btn {
    background: #cca74b;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 1rem 3rem;
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: none;
    transition: var(--transition-smooth);
}

.hero-btn:hover {
    background: #e6c46a;
    transform: translateY(-2px);
}

.hero-bottom-texts {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}

.bottom-text-left, .bottom-text-right {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 250px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.bottom-text-right {
    text-align: right;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cca74b;
}

.scroll-pill {
    width: 22px;
    height: 38px;
    border: 1px solid #cca74b;
    border-radius: 11px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.scroll-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: #cca74b;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Product Section */
.product-section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.exclusivity-text {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 2px solid var(--gold-primary);
}

.button-group {
    display: flex;
    gap: 1rem;
}

.product-visual {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.book-container {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    width: 300px;
}

.book-mockup {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 
        -20px 20px 40px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(212, 175, 55, 0.1),
        inset 2px 0 5px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    border-left: 4px solid #1a1a1a;
}

/* 3D Book Thickness effect */
.book-mockup::before {
    content: '';
    position: absolute;
    top: 1%;
    left: 100%;
    width: 25px;
    height: 98%;
    background: #e8e8e8;
    transform-origin: left;
    transform: rotateY(90deg);
    background-image: repeating-linear-gradient(to right, #ccc, #eee 1px, #ccc 2px);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.book-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.book-container:hover .book-glow {
    opacity: 1;
}

/* Pre-sale Box Section */
.presale-box-section {
    padding: 4rem 0 8rem;
}

.presale-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1px;
    background-image: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(212, 175, 55, 0.05) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

.presale-card-inner {
    background: var(--bg-tertiary);
    border-radius: 7px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.presale-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.presale-book {
    width: 180px;
    box-shadow: -10px 10px 20px rgba(0,0,0,0.5);
}

.presale-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-pure);
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.price-original {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-family: var(--font-body);
}

.price-presale {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.shipping-info {
    font-size: 0.95rem;
    color: var(--text-pure);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.premium-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    color: var(--gold-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.warning {
    background: rgba(255, 107, 107, 0.1);
    border-left: 2px solid #ff6b6b;
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.warning strong {
    color: #ff6b6b;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qty-controls {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    color: var(--text-pure);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.qty-controls input {
    width: 50px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--text-pure);
    font-family: var(--font-body);
}

.location-warning {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cover-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin-top: 0.75rem;
    letter-spacing: 0.02em;
    font-family: var(--font-body);
}

.savings-info {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(212, 175, 55, 0.1);
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* =========================================================
   NARRATIVE SECTIONS
   ========================================================= */

/* 1. Intro Section */
.intro-section {
    position: relative;
    padding: 8rem 20px;
    text-align: center;
    background: #020611;
}

.intro-light {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.intro-container {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.intro-title {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.intro-text {
    margin-bottom: 3.5rem;
}

.intro-text p {
    color: var(--text-pure);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    opacity: 0.9;
}

/* 2. Synopsis Section */
.synopsis-section {
    padding: 6rem 20px;
    background: linear-gradient(180deg, #020611 0%, #030814 100%);
}

.synopsis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.synopsis-eyebrow {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.synopsis-title {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.synopsis-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.synopsis-highlight {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    color: var(--text-pure);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid var(--gold-primary);
}

.synopsis-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.synopsis-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 1;
}

.synopsis-visual .book-3d-wrapper {
    z-index: 2;
}

/* 3. Emotional Hook */
.emotional-section {
    padding: 8rem 20px;
    background: #01030a;
    position: relative;
    text-align: center;
}

.emotional-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.emotional-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.emotional-title {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.emotional-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.emotional-highlight {
    margin-top: 3.5rem;
    color: var(--text-pure);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* 4. Features Section */
.features-section {
    padding: 6rem 20px;
    background: #020611;
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.features-title {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.features-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(10, 12, 22, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(10, 12, 22, 0.7);
    border-color: rgba(212, 175, 55, 0.35);
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* 5. Teaser Section */
.teaser-section {
    position: relative;
    padding: 7rem 20px;
    text-align: center;
    background: #02040b;
}

.teaser-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.teaser-container {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.teaser-eyebrow {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.teaser-title {
    color: var(--text-pure);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
}

.teaser-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.teaser-btn {
    margin-top: 1rem;
}

.teaser-spam-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1.5rem;
}

/* =========================================================
   TRUST SECTION (Información Preventa)
   ========================================================= */
.trust-section {
    margin-top: 5rem;
}

.trust-title {
    text-align: center;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.trust-card {
    background: rgba(10, 12, 22, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    padding: 2rem 1.8rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-card:hover {
    transform: translateY(-3px);
    background: rgba(10, 12, 22, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
}

.trust-icon {
    width: 28px;
    height: 28px;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.trust-card h4 {
    color: var(--text-pure);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.trust-footer-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2.5rem;
}

.trust-footer-note a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.trust-footer-note a:hover {
    color: var(--gold-light);
}

.pura-newsletter-spam-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1.5rem;
    text-align: center;
}

/* =========================================================
   NEWSLETTER PURA - LIGHT ONLY / NO CARD
   ========================================================= */

.pura-newsletter-lamp {
    position: relative;
    overflow: hidden;
    min-height: 820px;
    padding: 190px 20px 140px;
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 28%),
        linear-gradient(180deg, #020611 0%, #030814 48%, #02040b 100%);
    isolation: isolate;
}

.pura-lamp-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Línea superior dorada */
.pura-lamp-line {
    position: absolute;
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
    width: min(760px, 78vw);
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.18) 10%,
        rgba(245, 216, 126, 0.95) 50%,
        rgba(212, 175, 55, 0.18) 90%,
        transparent 100%
    );
    box-shadow:
        0 0 10px rgba(245, 216, 126, 0.55),
        0 0 30px rgba(212, 175, 55, 0.25),
        0 18px 55px rgba(212, 175, 55, 0.20);
    z-index: 5;
}

/* Apertura lateral de la luz */
.pura-lamp-beam {
    position: absolute;
    top: 96px;
    width: 42rem;
    height: 21rem;
    opacity: 1;
    filter: blur(2px);
}

.pura-lamp-beam-left {
    right: 50%;
    background-image: conic-gradient(
        from 78deg at center top,
        rgba(245, 216, 126, 0.70),
        rgba(212, 175, 55, 0.32),
        rgba(212, 175, 55, 0.10),
        transparent 42%,
        transparent 100%
    );
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.55) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.55) 50%, transparent 100%);
}

.pura-lamp-beam-right {
    left: 50%;
    background-image: conic-gradient(
        from 282deg at center top,
        transparent 0%,
        transparent 58%,
        rgba(212, 175, 55, 0.10),
        rgba(212, 175, 55, 0.32),
        rgba(245, 216, 126, 0.70)
    );
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.55) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.55) 50%, transparent 100%);
}

/* Resplandor principal que cae sobre la newsletter */
.pura-lamp-glow-main {
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    width: min(940px, 96vw);
    height: 390px;
    border-radius: 999px;
    background: radial-gradient(
        ellipse at center top,
        rgba(245, 216, 126, 0.34) 0%,
        rgba(212, 175, 55, 0.22) 28%,
        rgba(212, 175, 55, 0.12) 48%,
        rgba(212, 175, 55, 0.05) 62%,
        transparent 78%
    );
    filter: blur(36px);
    opacity: 1;
}

/* Halo más amplio, suave, extendido */
.pura-lamp-glow-soft {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1250px, 120vw);
    height: 560px;
    border-radius: 999px;
    background: radial-gradient(
        ellipse at center top,
        rgba(212, 175, 55, 0.16) 0%,
        rgba(212, 175, 55, 0.08) 34%,
        rgba(212, 175, 55, 0.04) 52%,
        transparent 72%
    );
    filter: blur(70px);
    opacity: 1;
}

/* Para que arriba no se vea raro */
.pura-lamp-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    background: linear-gradient(
        180deg,
        #020611 0%,
        rgba(2, 6, 17, 0.92) 55%,
        transparent 100%
    );
    z-index: 6;
}

/* Contenido */
.pura-newsletter-inner {
    position: relative;
    z-index: 10;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.pura-newsletter-copy {
    margin-bottom: 52px;
}

.pura-newsletter-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(232, 198, 104, 0.88);
}

.pura-newsletter-copy h2 {
    margin: 0 0 22px;
    color: #e8c668;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.02em;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 0.96;
    text-shadow:
        0 0 18px rgba(232, 198, 104, 0.10),
        0 0 42px rgba(232, 198, 104, 0.08);
}

.pura-newsletter-copy p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(234, 238, 246, 0.76);
    font-size: 1.08rem;
    line-height: 1.75;
}

/* Formulario */
.pura-newsletter-form {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.pura-field {
    margin-bottom: 26px;
    text-align: left;
}

.pura-field label {
    display: block;
    margin-bottom: 12px;
    color: rgba(232, 198, 104, 0.82);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.pura-field input,
.pura-field textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(232, 198, 104, 0.14);
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
}

.pura-field input {
    height: 58px;
}

.pura-field textarea {
    min-height: 100px;
    resize: vertical;
}

.pura-field input::placeholder,
.pura-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.pura-field input:focus,
.pura-field textarea:focus {
    border-bottom-color: rgba(232, 198, 104, 0.78);
    box-shadow: 0 10px 24px -18px rgba(232, 198, 104, 0.45);
}

/* Botón */
.pura-newsletter-btn {
    width: auto;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    min-height: 58px;
    border: 1px solid rgba(255, 228, 146, 0.45);
    border-radius: 999px;
    background: linear-gradient(135deg, #f6df95 0%, #d4af37 45%, #9e7926 100%);
    color: #07101d;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow:
        0 12px 35px rgba(212, 175, 55, 0.20),
        0 0 22px rgba(212, 175, 55, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.pura-newsletter-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 16px 42px rgba(212, 175, 55, 0.28),
        0 0 36px rgba(212, 175, 55, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .pura-newsletter-lamp {
        min-height: 740px;
        padding: 160px 20px 110px;
    }

    .pura-lamp-line {
        top: 84px;
        width: 78vw;
    }

    .pura-lamp-beam {
        width: 22rem;
        height: 14rem;
        top: 88px;
    }

    .pura-lamp-glow-main {
        top: 95px;
        height: 280px;
        width: 110vw;
    }

    .pura-lamp-glow-soft {
        top: 110px;
        height: 420px;
        width: 130vw;
    }

    .pura-newsletter-copy h2 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .pura-newsletter-copy p {
        font-size: 1rem;
    }

    .pura-field input {
        height: 54px;
    }
}
/* Footer */
.footer {
    background: #010308;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--gold-primary);
}

.footer-territory {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    text-align: center;
}

/* Animations & Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Gold Particles */
.gold-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--gold-primary);
}

/* Contact Form Styles */
.contact-form {
    max-width: 500px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: rgba(10, 12, 22, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 1rem;
    color: var(--text-pure);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(10, 12, 22, 0.9);
}

.submit-btn {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .synopsis-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-visual {
        order: -1;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .button-group {
        justify-content: center;
    }
    
    .exclusivity-text {
        justify-content: center;
    }

    .presale-card-inner {
        grid-template-columns: 1fr;
    }
    
    .presale-image {
        margin-bottom: 2rem;
    }

    .collage-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pill-header {
        width: calc(100% - 40px);
        border-radius: 20px;
        padding: 0.8rem;
    }
    
    .nav-list {
        display: none; /* Hide links on mobile, show only CTA */
    }
    
    .header-container {
        gap: 1rem;
    }

    .hero-glass-panel {
        padding: 2.5rem 1.5rem;
        margin: 0 10px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-bottom-texts {
        display: none; /* Hide on mobile to avoid clutter */
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


