/*
|--------------------------------------------------------------------------
| CONFIGURACIÓN GENERAL
|--------------------------------------------------------------------------
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        linear-gradient(
            135deg,
            #031525 0%,
            #073b5c 45%,
            #071b2c 100%
        );

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;
}


/*
|--------------------------------------------------------------------------
| ENCABEZADO
|--------------------------------------------------------------------------
*/

.hero {
    min-height: 540px;

    background:
        radial-gradient(
            circle at top,
            rgba(255, 190, 0, 0.30),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #03253d,
            #087ca7,
            #05334f
        );

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:
        rgba(255, 200, 0, 0.12);

    top: -250px;

    right: -150px;
}


.hero::after {
    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    background:
        rgba(0, 200, 255, 0.10);

    bottom: -250px;

    left: -100px;
}


.hero-overlay {
    width: 100%;

    padding: 50px 20px;

    position: relative;

    z-index: 2;
}


.hero-content {
    max-width: 1100px;

    margin: auto;

    text-align: center;
}


.logo {
    width: 100%;

    max-width: 480px;

    height: auto;

    display: block;

    margin: 0 auto 20px;

    filter:
        drop-shadow(
            0 15px 25px
            rgba(0, 0, 0, 0.40)
        );
}


.hero h1 {
    font-size: 48px;

    color: #ffd52a;

    margin-bottom: 10px;

    text-shadow:
        0 3px 10px
        rgba(0, 0, 0, 0.40);
}


.slogan {
    font-size: 23px;

    color: #ffffff;

    margin-bottom: 20px;
}


.location {
    display: inline-block;

    padding: 10px 22px;

    background:
        rgba(0, 0, 0, 0.25);

    border:
        1px solid
        rgba(255, 255, 255, 0.25);

    border-radius: 50px;

    font-weight: bold;
}


/*
|--------------------------------------------------------------------------
| MENÚ
|--------------------------------------------------------------------------
*/

.main-menu {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(3, 21, 37, 0.96);

    text-align: center;

    padding: 18px 10px;

    box-shadow:
        0 5px 20px
        rgba(0, 0, 0, 0.30);
}


.main-menu a {
    display: inline-block;

    color: #ffffff;

    text-decoration: none;

    font-weight: bold;

    margin: 5px;

    padding: 10px 18px;

    border-radius: 50px;

    transition: 0.3s;
}


.main-menu a:hover {
    background: #ffd52a;

    color: #03253d;
}


/*
|--------------------------------------------------------------------------
| CONTENEDOR
|--------------------------------------------------------------------------
*/

.main-container {
    width: 92%;

    max-width: 1200px;

    margin: auto;

    padding: 50px 0;
}


/*
|--------------------------------------------------------------------------
| RADIO EN VIVO
|--------------------------------------------------------------------------
*/

.radio-section {
    background:
        linear-gradient(
            135deg,
            #ff8c00,
            #ffc400
        );

    color: #052238;

    text-align: center;

    padding: 45px 30px;

    border-radius: 25px;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.30);

    margin-bottom: 35px;
}


.live-badge {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #d60000;

    color: #ffffff;

    padding: 8px 18px;

    border-radius: 50px;

    font-weight: bold;

    margin-bottom: 20px;
}


.live-dot {
    width: 12px;

    height: 12px;

    background: #ffffff;

    border-radius: 50%;

    animation:
        pulse 1.2s infinite;
}


@keyframes pulse {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


.radio-section h2 {
    font-size: 38px;

    margin-bottom: 10px;
}


.radio-description {
    font-size: 20px;

    margin-bottom: 25px;
}


.player-container {
    max-width: 800px;

    margin: auto;

    padding: 20px;

    background:
        rgba(255, 255, 255, 0.25);

    border-radius: 20px;
}


.player-container audio {
    width: 100%;

    display: block;
}


.player-message {
    margin-top: 15px;

    font-weight: bold;
}


/*
|--------------------------------------------------------------------------
| TARJETAS
|--------------------------------------------------------------------------
*/

.content-card {
    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    padding: 40px;

    margin-bottom: 35px;

    border-radius: 25px;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.25);

    backdrop-filter:
        blur(8px);

    text-align: center;
}


.content-card h2 {
    color: #ffd52a;

    font-size: 34px;

    margin-bottom: 20px;
}


.content-card p {
    font-size: 18px;

    max-width: 850px;

    margin:
        0 auto 15px;
}


.section-icon {
    font-size: 55px;

    margin-bottom: 15px;
}


/*
|--------------------------------------------------------------------------
| CARACTERÍSTICAS
|--------------------------------------------------------------------------
*/

.music-features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 35px;
}


.feature {
    background:
        rgba(0, 0, 0, 0.22);

    padding: 30px 20px;

    border-radius: 20px;

    transition: 0.3s;
}


.feature:hover {
    transform:
        translateY(-5px);

    background:
        rgba(255, 213, 42, 0.15);
}


.feature-icon {
    display: block;

    font-size: 45px;

    margin-bottom: 12px;
}


.feature h3 {
    color: #ffd52a;

    margin-bottom: 8px;
}


/*
|--------------------------------------------------------------------------
| MENSAJE TROPICAL
|--------------------------------------------------------------------------
*/

.tropical-message {
    background:
        linear-gradient(
            135deg,
            #0077a8,
            #00a884
        );

    padding: 45px 30px;

    border-radius: 25px;

    text-align: center;

    margin-bottom: 35px;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.25);
}


.tropical-icon {
    display: block;

    font-size: 55px;

    margin-bottom: 10px;
}


.tropical-message h2 {
    font-size: 36px;

    color: #ffffff;

    margin-bottom: 10px;
}


.tropical-message p {
    font-size: 19px;
}


/*
|--------------------------------------------------------------------------
| REDES SOCIALES
|--------------------------------------------------------------------------
*/

.social-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 25px;
}


.social-links a {
    background: #ffd52a;

    color: #03253d;

    text-decoration: none;

    font-weight: bold;

    padding: 12px 25px;

    border-radius: 50px;

    transition: 0.3s;
}


.social-links a:hover {
    transform:
        translateY(-3px);

    background: #ffffff;
}


/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.footer {
    background: #020d16;

    text-align: center;

    padding: 50px 20px;

    border-top:
        3px solid
        #ffd52a;
}


.footer-logo {
    width: 220px;

    max-width: 80%;

    margin-bottom: 15px;
}


.footer h2 {
    color: #ffd52a;

    font-size: 28px;

    margin-bottom: 8px;
}


.footer-location {
    margin-top: 12px;

    font-weight: bold;
}


.footer-line {
    width: 100px;

    height: 3px;

    background: #ffd52a;

    margin: 25px auto;
}


.copyright {
    font-size: 14px;

    opacity: 0.80;
}


.streaming-credit {
    margin-top: 8px;

    font-size: 13px;

    opacity: 0.60;
}


/*
|--------------------------------------------------------------------------
| WHATSAPP
|--------------------------------------------------------------------------
*/

.whatsapp-button {
    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 1500;

    background: #25d366;

    color: #ffffff;

    text-decoration: none;

    font-weight: bold;

    padding: 14px 24px;

    border-radius: 50px;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.35);
}


/*
|--------------------------------------------------------------------------
| TABLETS
|--------------------------------------------------------------------------
*/

@media (max-width: 850px) {

    .hero {
        min-height: 450px;
    }

    .logo {
        max-width: 400px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .music-features {
        grid-template-columns: 1fr;
    }

}


/*
|--------------------------------------------------------------------------
| TELÉFONOS
|--------------------------------------------------------------------------
*/

@media (max-width: 600px) {

    .hero {
        min-height: auto;
    }

    .hero-overlay {
        padding: 35px 15px;
    }

    .logo {
        max-width: 330px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .slogan {
        font-size: 18px;
    }

    .main-menu {
        position: relative;
    }

    .main-menu a {
        display: block;

        padding: 9px;
    }

    .main-container {
        width: 94%;

        padding: 30px 0;
    }

    .radio-section {
        padding: 30px 18px;
    }

    .radio-section h2 {
        font-size: 29px;
    }

    .content-card {
        padding: 30px 20px;
    }

    .content-card h2 {
        font-size: 28px;
    }

    .tropical-message {
        padding: 35px 20px;
    }

    .tropical-message h2 {
        font-size: 29px;
    }

}