:root {
    --primary: #FF006E;
    --secondary: #0066CC;
    --accent: #FFD60A;
    --dark: #1a1a2e;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #6b7280;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border-bottom: 2px solid rgba(255, 0, 110, 0.2);
}

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

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF006E 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 10px rgba(255, 0, 110, 0.3);
    filter: drop-shadow(0 2px 8px rgba(255, 0, 110, 0.2));
}

.logo-text:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

/* ==================== HERO ==================== */
.hero {
    margin-top: 80px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #FF006E, #0066CC, #FFD60A, #FF006E);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.1;
    z-index: 0;
}

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

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BOTONES ==================== */
.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff1a75 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #0047a3 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.5);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20a352 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    font-size: 16px;
    padding: 18px 50px;
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
}

/* ==================== SECCIONES ==================== */
.section-tv,
.section-radio,
.section-contacto {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-tv {
    background: linear-gradient(180deg, var(--white) 0%, #f9f9f9 100%);
}

.section-radio {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8f1ff 100%);
    position: relative;
}

.section-radio::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    bottom: -300px;
    right: -200px;
    pointer-events: none;
}

.section-contacto {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d44 100%);
    color: var(--white);
    text-align: center;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-section {
    max-width: 140px;
    height: auto;
    margin-bottom: 30px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-section:hover {
    transform: scale(1.05);
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro p {
    font-size: 18px;
    color: var(--gray);
    font-weight: 300;
}

.section-contacto h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-contacto p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

/* ==================== PLAYER CARDS ==================== */
.player-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.player-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.player-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff1a75 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--dark);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 110, 0.2);
}

/* ==================== RADIO CARD ==================== */
.radio-card {
    background: #0f0f1e;
    border-radius: 25px;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(255, 0, 110, 0.15);
    border: 1px solid rgba(255, 0, 110, 0.15);
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.radio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 120px rgba(255, 0, 110, 0.25);
    border-color: rgba(255, 0, 110, 0.3);
}

/* Portada con logo */
.radio-cover {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-image {
    width: 100%;
    height: auto;
    display: block;
}

.radio-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    z-index: 5;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ff3838;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #ff3838;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Barra inferior con controles */
.radio-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #0a0a14;
}

.play-btn-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD60A 0%, #FFA500 100%);
    color: var(--dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 214, 10, 0.35);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.play-btn-modern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.play-btn-modern svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
    margin-left: 2px;
}

.play-btn-modern:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(255, 214, 10, 0.45);
}

.play-btn-modern.playing {
    background: linear-gradient(135deg, var(--secondary) 0%, #0047a3 100%);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.35);
}

.play-btn-modern.playing svg {
    margin-left: 0;
}

.radio-progress-section {
    flex: 1;
}

.progress-track {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD60A 0%, #FFA500 100%);
    width: 0%;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.progress-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    flex-shrink: 0;
}

/* ==================== NOSOTROS: VISION Y MISION ==================== */
.section-nosotros {
    padding: 120px 0;
    background: linear-gradient(180deg, #f9f9f9 0%, var(--white) 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 950px;
    margin: 0 auto;
}

.vm-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 110, 0.08);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(255, 0, 110, 0.12);
    border-color: rgba(255, 0, 110, 0.2);
}

.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.25);
}

.vm-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.vm-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.vm-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* ==================== CORREOS CONTACTO ==================== */
.contact-emails {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.contact-emails a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 3px;
}

.contact-emails a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
    opacity: 0.8;
}

.footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-links {
        gap: 25px;
        font-size: 11px;
    }

    .section-nosotros {
        padding: 80px 0;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vm-card {
        padding: 35px 30px;
    }

    .contact-emails {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        gap: 12px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 12px;
    }

    .section-intro h2 {
        font-size: 32px;
    }

    .section-tv,
    .section-radio,
    .section-contacto {
        padding: 80px 0;
    }

    .radio-card {
        max-width: 100%;
    }

    .cover-title {
        font-size: 22px;
    }

    .play-btn-modern {
        width: 55px;
        height: 55px;
    }

    .play-btn-modern svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: 70px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .nav-links {
        gap: 15px;
        font-size: 10px;
    }

    .hero {
        margin-top: 70px;
        height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 14px 25px;
    }

    .section-intro {
        margin-bottom: 50px;
    }

    .section-intro h2 {
        font-size: 26px;
    }

    .section-intro p {
        font-size: 16px;
    }

    .logo-section {
        max-width: 100px;
        margin-bottom: 20px;
    }

    .radio-card {
        max-width: 100%;
        border-radius: 20px;
    }

    .radio-badge {
        padding: 6px 12px;
        font-size: 10px;
        top: 15px;
        left: 15px;
    }

    .cover-info {
        padding: 35px 18px 16px;
    }

    .cover-title {
        font-size: 19px;
    }

    .cover-subtitle {
        font-size: 13px;
    }

    .radio-bar {
        padding: 16px 18px;
        gap: 12px;
    }

    .play-btn-modern {
        width: 50px;
        height: 50px;
    }

    .play-btn-modern svg {
        width: 22px;
        height: 22px;
    }

    .progress-time {
        font-size: 10px;
    }
}
