/* ============================================
   SECCIÓN: ACCESO DE POR VIDA (VERSIÓN V3 FINAL)
   The Awakening Code - Web Premium v5.4.4
   ============================================
   
   Implementación: 26-Feb-2026
   Estimación: +27-30% conversión (+€183k-€278k/año)
   Protección: 9 meses (sin mencionar "PDF" ni páginas)
   ============================================ */

.lifetime-access-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.lifetime-access-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Badge superior */
.lifetime-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--color-dark-1) 0%, var(--color-dark-2) 100%);
    border: 2px solid var(--gold-alpha-40);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    animation: pulseGlowBadge 3s ease-in-out infinite;
}

@keyframes pulseGlowBadge {
    0%, 100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

.lifetime-badge i {
    font-size: 16px;
}

/* Título principal */
.lifetime-title {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-on-dark-primary);
}

.lifetime-title .highlight {
    color: var(--gold-primary);
    position: relative;
    display: inline-block;
}

/* Subtítulo MEJORADO (de screenshots) */
.lifetime-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    color: var(--text-on-dark-secondary);
    max-width: 1000px;
    margin: 0 auto 80px;
}

.lifetime-subtitle strong {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Contenedor de 2 bloques */
.lifetime-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.lifetime-block {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.6) 0%, rgba(26, 26, 26, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-alpha-40);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lifetime-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-champagne) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lifetime-block:hover {
    border-color: var(--gold-alpha-70);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.lifetime-block:hover::before {
    opacity: 1;
}

.lifetime-block-icon {
    font-size: 72px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.lifetime-block:hover .lifetime-block-icon {
    transform: scale(1.1);
}

.lifetime-block-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-on-dark-primary);
    margin-bottom: 20px;
}

.lifetime-block-description {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-on-dark-secondary);
}

/* Bloque CTA POTENTE (de screenshots) */
.lifetime-cta-block {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid var(--gold-alpha-40);
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.lifetime-cta-block::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Icono corona NUEVO */
.lifetime-investment-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold-primary);
    position: relative;
    z-index: 1;
}

/* Título CTA NUEVO (de screenshots) */
.lifetime-investment-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-on-dark-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

/* Descripción con contraste NUEVO */
.lifetime-investment-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-on-dark-secondary);
    max-width: 850px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.lifetime-investment-description strong {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Prueba social */
.lifetime-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-alpha-40);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-on-dark-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.lifetime-social-proof i {
    color: var(--gold-primary);
    font-size: 18px;
}

.lifetime-social-proof strong {
    color: var(--gold-primary);
    font-weight: 600;
}

/* CTA Button */
.lifetime-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 56px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-champagne) 100%);
    color: var(--color-dark-1);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.lifetime-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
}

.lifetime-cta-button i {
    font-size: 20px;
}

/* CTA Note con VALOR ANCLA (de screenshots) */
.lifetime-cta-note {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-on-dark-secondary);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.lifetime-cta-note strong {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Mensaje final */
.lifetime-final-message {
    text-align: center;
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid var(--gold-alpha-40);
    border-radius: 16px;
}

.lifetime-final-message i {
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.lifetime-final-message p {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-on-dark-primary);
    margin: 0;
}

.lifetime-final-message p .highlight {
    color: var(--gold-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .lifetime-title {
        font-size: 42px;
    }
    
    .lifetime-subtitle {
        font-size: 18px;
    }
    
    .lifetime-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .lifetime-cta-block {
        padding: 40px 32px;
    }
    
    .lifetime-investment-title {
        font-size: 32px;
    }
    
    .lifetime-cta-button {
        padding: 20px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lifetime-access-container {
        padding: 0 20px;
    }
    
    .lifetime-title {
        font-size: 36px;
    }
    
    .lifetime-badge {
        font-size: 12px;
        padding: 10px 24px;
    }
    
    .lifetime-block {
        padding: 32px 24px;
    }
    
    .lifetime-cta-block {
        padding: 32px 24px;
    }
    
    .lifetime-block-icon {
        font-size: 60px;
    }
    
    .lifetime-investment-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}
