:root {
    --bg-color: #040d21;
    --text-color: #ffffff;
    --text-muted: #94a3b8;
    --primary: #FFB300;
    --primary-hover: #FFA000;
    --secondary: #00E5FF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 229, 255, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(255, 179, 0, 0.05), transparent 40%);
}

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

/* NAVBAR */
.navbar {
    padding: 20px 0;
    background: rgba(4, 13, 33, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo img {
    height: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
}

.btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    padding: 10px 20px;
    border-radius: 30px;
}

.btn-secondary:hover {
    background: rgba(255, 179, 0, 0.1);
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(0, 229, 255, 0.1);
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* HERO */
.hero {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-10deg);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--secondary);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

.badge-neon {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid var(--secondary);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-indicators {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FEATURES */
.features {
    padding: 100px 0;
    background: rgba(0,0,0,0.3);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    background: linear-gradient(120deg, #FFB300, #00E5FF, #FF007F, #00E5FF, #FFB300);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
    display: table;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

/* PRICING */
.pricing-section {
    padding: 100px 0;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 179, 0, 0.1);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #e2e8f0;
    line-height: 1.4;
}

.paypal-container {
    margin-top: auto;
    min-height: 45px;
}

/* CTA */
.cta-section {
    padding: 100px 0;
}

.cta-container {
    text-align: center;
    padding: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(4, 13, 33, 0.9), rgba(0, 229, 255, 0.1));
    border: 1px solid var(--glass-border);
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 179, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0); }
}

/* FOOTER */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 15px;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ANIMACIÓN DE GRADIENTE PARA TÍTULOS */
.text-gradient-animate {
    background: linear-gradient(120deg, #FFB300, #00E5FF, #FF007F, #00E5FF, #FFB300);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
}

@keyframes shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* EFECTO NEÓN EXTRA PARA EL BADGE */
.badge-neon {
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .subtitle {
        margin: 0 auto 40px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-image img, .hero-image video {
        transform: none;
    }
}

/* ============================================================
   PODCAST VIP SECTION DESIGN
   ============================================================ */
.podcast-section-vip {
    position: relative;
    z-index: 10;
}

.podcast-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.podcast-vip-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(0, 229, 255, 0.05);
    margin: 40px auto;
}

/* LADO IZQUIERDO: HUB SÓNICO */
.podcast-sonic-hub {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sonic-ring-outer {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(4, 13, 33, 0.8);
    border: 2px dashed rgba(0, 229, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.sonic-ring-inner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(255, 179, 0, 0.1));
    border: 2px solid rgba(0, 229, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

.speaker-sphere {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #040d21;
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4), inset 0 0 20px rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
    user-select: none;
}

.speaker-emoji {
    font-size: 4rem;
    transition: transform 0.15s ease;
    display: inline-block;
}

/* Animaciones de reproducción activa */
.speaker-sphere.playing {
    border-color: var(--primary);
    box-shadow: 0 0 50px rgba(255, 179, 0, 0.6), inset 0 0 25px rgba(255, 179, 0, 0.3);
    animation: pulseGlow 1.2s infinite alternate ease-in-out;
}

.speaker-sphere.playing .speaker-emoji {
    animation: speakerVibrate 0.1s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes speakerVibrate {
    0% { transform: scale(1) rotate(-4deg); }
    100% { transform: scale(1.1) rotate(4deg); }
}

/* EQ GIGANTE */
.giant-eq {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 80px;
    margin-top: 40px;
    width: 100%;
}

.eq-bar {
    width: 8px;
    height: 10px;
    background: var(--secondary);
    border-radius: 4px;
    transition: height 0.15s ease, background-color 0.3s;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.giant-eq.playing .eq-bar {
    background: linear-gradient(to top, var(--secondary), var(--primary));
}

.giant-eq.playing .eq-bar:nth-child(1) { animation: eqJump 0.6s infinite alternate 0.1s; }
.giant-eq.playing .eq-bar:nth-child(2) { animation: eqJump 0.8s infinite alternate 0.3s; }
.giant-eq.playing .eq-bar:nth-child(3) { animation: eqJump 0.5s infinite alternate 0.0s; }
.giant-eq.playing .eq-bar:nth-child(4) { animation: eqJump 0.7s infinite alternate 0.4s; }
.giant-eq.playing .eq-bar:nth-child(5) { animation: eqJump 0.9s infinite alternate 0.2s; }
.giant-eq.playing .eq-bar:nth-child(6) { animation: eqJump 0.6s infinite alternate 0.5s; }
.giant-eq.playing .eq-bar:nth-child(7) { animation: eqJump 0.8s infinite alternate 0.1s; }
.giant-eq.playing .eq-bar:nth-child(8) { animation: eqJump 0.7s infinite alternate 0.3s; }

@keyframes eqJump {
    0% { height: 10px; }
    100% { height: 75px; box-shadow: 0 0 15px rgba(255, 179, 0, 0.8); }
}

/* LADO DERECHO: DETALLES Y CONSOLA */
.podcast-vip-details {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.badge-premium-glow {
    align-self: flex-start;
    background: rgba(255, 179, 0, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.2);
}

.glowing-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.podcast-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Consola de Control */
.sound-console {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.console-progress-wrapper {
    margin-bottom: 25px;
}

.console-progress-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.console-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 4px;
    box-shadow: 0 0 10px var(--secondary);
    transition: width 0.1s linear;
}

.time-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-family: monospace;
}

.console-controls {
    display: flex;
    justify-content: center;
}

.console-play-btn {
    background: linear-gradient(135deg, var(--primary), #FFA000);
    border: none;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 18px 45px;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255, 179, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.console-play-btn:hover {
    background: linear-gradient(135deg, var(--secondary), #00B0FF);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    transform: scale(1.05);
}

.console-play-btn.playing {
    background: linear-gradient(135deg, #FF3D00, #D50000);
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 61, 0, 0.4);
}

/* RESPONSIVE AJUSTES */
@media (max-width: 900px) {
    .podcast-vip-container {
        flex-direction: column;
        padding: 40px 30px;
    }
    .podcast-sonic-hub {
        width: 100%;
    }
}
