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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f5f7;
    color: #20242b;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.encabezado {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.menu {
    min-height: 84px;
    padding: 8px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
}

.menu-logo img {
    display: block;
    width: 105px;
    height: 66px;
    object-fit: contain;
}

.menu-enlaces {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-enlaces a {
    display: block;
    padding: 11px 16px;
    color: #1d2026;
    font-weight: 700;
    text-decoration: none;
    border-radius: 24px;
    transition: 0.25s;
}

.menu-enlaces a:hover {
    background: #d71920;
    color: #fff;
    transform: translateY(-2px);
}

.boton-menu {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: #d71920;
    padding: 11px;
    cursor: pointer;
}

.boton-menu span {
    display: block;
    height: 3px;
    margin: 5px 0;
    border-radius: 4px;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 690px;
    margin-top: 84px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #101115;
}

.hero-fondo {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(215, 25, 32, 0.45),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(246, 183, 35, 0.18),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #090a0c 0%,
            #191b20 55%,
            #08090b 100%
        );
}

.hero-fondo::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
}

.hero-contenido {
    position: relative;
    z-index: 2;
    width: min(900px, 92%);
    padding: 55px 20px;
    text-align: center;
    color: #fff;
}

.hero-logo {
    width: min(390px, 72vw);
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.48));
}

.hero-etiqueta {
    margin: 18px 0 8px;
    color: #f6b723;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.04;
    margin: 0 0 16px;
}

.hero-texto {
    max-width: 680px;
    margin: 0 auto;
    color: #d9dbe0;
    font-size: 19px;
    line-height: 1.65;
}

.bloque-estacion {
    padding: 75px 20px;
    background: #fff;
}

.tarjeta-radio {
    width: min(620px, 100%);
    margin: auto;
    padding: 45px 35px;
    border-radius: 28px;
    background: #15171c;
    color: #fff;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.distintivo-en-vivo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(215, 25, 32, 0.16);
    color: #ff7479;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.distintivo-en-vivo span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e51f26;
    box-shadow: 0 0 0 6px rgba(229, 31, 38, 0.12);
    animation: pulso 1.3s infinite;
}

.logo-reproductor {
    display: block;
    width: 240px;
    max-height: 180px;
    margin: 22px auto 10px;
    object-fit: contain;
}

.senal-online {
    color: #f6b723;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.tarjeta-radio h2 {
    font-size: 36px;
    margin: 7px 0;
}

.subtitulo-radio {
    color: #aeb3bd;
}

.ecualizador {
    height: 55px;
    margin: 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ecualizador span {
    width: 6px;
    height: 18px;
    border-radius: 7px;
    background: #d71920;
}

.ecualizador.activo span {
    animation: onda 0.8s ease-in-out infinite;
}

.ecualizador span:nth-child(2),
.ecualizador span:nth-child(6) {
    animation-delay: 0.12s;
}

.ecualizador span:nth-child(3),
.ecualizador span:nth-child(5) {
    animation-delay: 0.24s;
}

.ecualizador span:nth-child(4) {
    animation-delay: 0.36s;
}

.boton-escuchar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    background: #d71920;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s;
}

.boton-escuchar:hover {
    transform: translateY(-2px);
    background: #b61016;
}

.icono-play {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: #d71920;
    font-size: 14px;
}

.mensaje-reproductor {
    min-height: 22px;
    margin-top: 16px;
    color: #9ea5b0;
    font-size: 14px;
}

.seccion {
    padding: 85px 20px;
    background: #f4f5f7;
}

.seccion-clara {
    background: #fff;
}

.contenedor {
    width: min(1180px, 100%);
    margin: auto;
}

.titulo-seccion {
    text-align: center;
    margin-bottom: 42px;
}

.titulo-seccion span,
.contacto-etiqueta {
    color: #d71920;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.titulo-seccion h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 8px 0 10px;
}

.titulo-seccion p {
    color: #6f7580;
}

.rejilla-flyers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.tarjeta-flyer {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 15px 40px rgba(20, 24, 32, 0.1);
    transition: 0.25s;
}

.tarjeta-flyer:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(20, 24, 32, 0.16);
}

.tarjeta-flyer img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.galeria-marco {
    width: 100%;
    overflow: hidden;
    padding: 12px 0 26px;
}

.galeria-pista {
    display: flex;
    width: max-content;
    animation: mover-galeria 38s linear infinite;
}

.galeria-pista:hover {
    animation-play-state: paused;
}

.galeria-grupo {
    display: flex;
    gap: 18px;
    padding-right: 18px;
}

.galeria-grupo img {
    width: 330px;
    height: 235px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(20, 24, 32, 0.14);
}

.contacto {
    padding: 70px 20px;
    background: #17191e;
    color: #fff;
}

.contacto-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contacto h2 {
    font-size: 42px;
    margin: 8px 0;
}

.contacto p {
    color: #aeb3bd;
}

.contacto-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contacto-botones a {
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    text-decoration: none;
    transition: 0.25s;
}

.contacto-botones a:hover {
    background: #d71920;
    border-color: #d71920;
}

.pie {
    padding: 35px 20px;
    text-align: center;
    background: #0d0e11;
    color: #8e949e;
}

.pie img {
    width: 120px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}

@keyframes pulso {
    50% {
        box-shadow: 0 0 0 11px rgba(229, 31, 38, 0);
    }
}

@keyframes onda {
    0%,
    100% {
        height: 14px;
    }

    50% {
        height: 48px;
    }
}

@keyframes mover-galeria {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 980px) {
    .rejilla-flyers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .boton-menu {
        display: block;
    }

    .menu-enlaces {
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        padding: 18px;
        display: none;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.13);
    }

    .menu-enlaces.activo {
        display: flex;
    }

    .menu-enlaces li,
    .menu-enlaces a {
        width: 100%;
        text-align: center;
    }

    .contacto-contenido {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        min-height: 610px;
    }

    .galeria-grupo img {
        width: 280px;
        height: 205px;
    }
}

@media (max-width: 620px) {
    .rejilla-flyers {
        grid-template-columns: 1fr;
    }

    .tarjeta-flyer img {
        min-height: 430px;
    }
}

@media (max-width: 520px) {
    .menu {
        padding: 7px 18px;
    }

    .menu-logo img {
        width: 86px;
    }

    .hero-contenido {
        padding: 40px 12px;
    }

    .tarjeta-radio {
        padding: 36px 20px;
    }

    .tarjeta-radio h2 {
        font-size: 29px;
    }

    .boton-escuchar {
        width: 100%;
        justify-content: center;
    }

    .contacto h2 {
        font-size: 34px;
    }

    .galeria-grupo img {
        width: 245px;
        height: 180px;
    }
}


.hero-social{
    margin-top:28px;
    display:flex;
    justify-content:center;
    gap:18px;
}

.hero-social a{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    transition:.25s;
}

.hero-facebook{
    background:#1877F2;
}

.hero-whatsapp{
    background:#25D366;
}

.hero-social a:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 12px 28px rgba(0,0,0,.35);
}



.icono-whatsapp{
    width:30px;
    height:30px;
    object-fit:contain;
    display:block;
    filter:brightness(0) invert(1);
}

.hero-whatsapp{
    background:#25D366;
}
