*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

:root{

--amarillo:#FFD400;
--negro:#111;
--blanco:#fff;
--gris:#f4f4f4;
--rojo:#d50000;

}

body{

background:var(--gris);

overflow-x:hidden;

}

/*==========================
HEADER
==========================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

padding:15px 0;

transition:background .4s,padding .4s,box-shadow .4s;

background:rgba(0,0,0,.55);

backdrop-filter:blur(6px);

transform:translateZ(0);

will-change:transform;

backface-visibility:hidden;

border-bottom:1px solid rgba(255,255,255,.10);

}

header.scroll{

background:#111;

box-shadow:0 10px 30px rgba(0,0,0,.25);

padding:10px 0;

}
.container{

width:92%;

max-width:1350px;

margin:auto;

}

.navbar{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:contain;
}

header.scroll .logo img{

height:60px;

}

.logo h2{

color:white;

font-size:28px;

}

.logo span{

color:var(--amarillo);

}

.menu{

display:flex;

gap:35px;

list-style:none;

}

.menu a{

position:relative;

color:white;

text-decoration:none;

font-weight:600;

padding:8px 0;

transition:.3s;

}

.menu a::after{

content:"";

position:absolute;

left:0;

bottom:-5px;

width:0;

height:3px;

background:#FFD400;

transition:.35s;

}

.menu a:hover::after{

width:100%;

}

.menu a:hover{

color:#FFD400;

}

.live{

padding:14px 28px;

border-radius:40px;

background:linear-gradient(45deg,#ff0000,#d50000);

color:white;

font-weight:bold;

text-decoration:none;

box-shadow:0 8px 25px rgba(255,0,0,.35);

animation:livePulse 1.5s infinite;

display:inline-block;

transform:translateZ(0);

will-change:transform;

backface-visibility:hidden;

}

@keyframes livePulse{

50%{

transform:scale(1.05);

}

}

/*==========================
HERO
==========================*/

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../img/acobamba.jpg") center center/cover no-repeat fixed;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top,rgba(255,212,0,.18),transparent 60%);
    animation:fondoHero 12s ease-in-out infinite alternate;
}

@keyframes fondoHero{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.hero .contenido{
    position:relative;
    z-index:2;
}



.hero img{

width:220px;

margin-bottom:25px;

}

.hero h1{

font-size:75px;

font-weight:800;

}

.hero h3{

font-size:32px;

color:var(--amarillo);

margin:20px 0;

}

.hero p{

font-size:20px;

max-width:750px;

margin:auto;

line-height:1.8;

}

.botones{

margin-top:40px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 40px;

border-radius:50px;

background:linear-gradient(45deg,#FFD400,#ffbf00);

color:#111;

font-weight:700;

text-decoration:none;

transition:.35s;

box-shadow:0 12px 25px rgba(0,0,0,.25);

}

.btn:hover{

transform:translateY(-6px);

box-shadow:0 18px 35px rgba(0,0,0,.35);

}

.btn2{

background:white;

}

.marquesina{

background:#111;

color:white;

display:flex;

position:relative;

}

.marquesina h4{

background:#d60000;

padding:18px 25px;

position:relative;

z-index:2;

flex-shrink:0;

white-space:nowrap;

}

.marquesina p{

padding:18px;

overflow:hidden;

white-space:nowrap;

animation:texto 25s linear infinite;

position:relative;

z-index:1;

}

@keyframes texto{

0%{

transform:translateX(100%);

}

100%{

transform:translateX(-100%);

}

}

.live-section{

padding:100px 0;

background:#fff;

}

.titulo{

text-align:center;

margin-bottom:60px;

}

.titulo h2{

font-size:42px;

margin-bottom:15px;

color:#111;

}

.titulo p{

color:#666;

font-size:18px;

}

.radio-player{

background:#111;

padding:50px;

border-radius:25px;

color:white;

box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.radio-info{

text-align:center;

margin-bottom:30px;

}

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

}

.card:hover{

transform:translateY(-10px);

}

.card img{

width:100%;

height:230px;

object-fit:cover;

}

.contenido{

padding:25px;

}

.contenido h3{

margin-bottom:15px;

}

.contenido a{

display:inline-block;

margin-top:20px;

color:#d60000;

font-weight:bold;

text-decoration:none;

}

.horarios{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.hora{

background:white;

padding:30px;

border-left:6px solid #FFD400;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.hora span{

color:#d60000;

font-weight:bold;

font-size:18px;

}

.hora h4{

margin-top:10px;

font-size:22px;

}

/*==========================
LOCUTORES
==========================*/

.locutores{

background:#ffffff;

padding:100px 0;

}

.locutores-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.locutor-card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.1);

transition:.4s;

}

.locutor-card:hover{

transform:translateY(-12px);

}

.locutor-card img{

width:100%;

height:420px;

object-fit:cover;

}

.locutor-info{

padding:30px;

}

.locutor-info h3{

font-size:28px;

margin-bottom:8px;

}

.locutor-info span{

display:inline-block;

background:#FFD400;

padding:8px 18px;

border-radius:30px;

font-weight:700;

margin-bottom:20px;

}

/*==========================
GALERÍA
==========================*/

.galeria{

background:#f7f7f7;

padding:100px 0;

}

.galeria-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:20px;

}

.galeria-grid img{

width:100%;

height:260px;

object-fit:cover;

border-radius:18px;

transition:.5s;

cursor:pointer;

}

.galeria-grid img:hover{

transform:scale(1.08);

}

/*==========================
VIDEOS
==========================*/

.videos{

padding:100px 0;

background:white;

}

.video-box{

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.15);

position:relative;

width:100%;

aspect-ratio:16/9;

}

.video-box iframe{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

}

.contacto{

padding:100px 0;

background:#f8f8f8;

}

.contacto-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.contacto-card{

background:white;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.contacto-card:hover{

transform:translateY(-10px);

}

.contacto-card i{

font-size:50px;

color:#FFD400;

margin-bottom:20px;

}

footer{

background:#111;

color:white;

text-align:center;

padding:70px 20px;

}

.footer-logo{

width:120px;

margin:auto;

margin-bottom:20px;

}

.redes{

display:flex;

justify-content:center;

gap:20px;

margin-top:25px;

}

.redes a{

width:50px;

height:50px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#FFD400;

color:#111;

font-size:22px;

text-decoration:none;

transition:.3s;

}

.redes a:hover{

transform:scale(1.1);

}

.whatsapp{

position:fixed;

right:20px;

bottom:20px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:34px;

text-decoration:none;

z-index:9999;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transform:translateZ(0);

will-change:transform;

backface-visibility:hidden;

}

#topo{

position:fixed;

left:20px;

bottom:20px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#FFD400;

font-size:22px;

display:none;

justify-content:center;

align-items:center;

cursor:pointer;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transform:translateZ(0);

will-change:transform;

backface-visibility:hidden;

}

.card,
.hora,
.locutor-card,
.contacto-card{

opacity:1;

transform:translateY(0);

transition:.8s;

}

.visible{

opacity:1;

transform:translateY(0);

}

@media(max-width:768px){

.menu{

display:none;

}

.hero h1{

font-size:42px;

}

.hero h3{

font-size:24px;

}

.hero img{

width:150px;

}

.titulo h2{

font-size:32px;

}

}

.menu-toggle{

display:none;

background:#FFD400;

border:none;

font-size:28px;

padding:12px 18px;

border-radius:10px;

cursor:pointer;

transform:translateZ(0);

will-change:transform;

backface-visibility:hidden;

}

@media(max-width:900px){

.menu{

display:none;

flex-direction:column;

position:absolute;

top:90px;

left:0;

width:100%;

background:#111;

padding:20px;

}

.menu.activo{

display:flex;

}

.menu-toggle{

display:block;

}

}
.card{

border-top:6px solid #FFD400;

}

.card img{

transition:.6s;

}

.card:hover img{

transform:scale(1.08);

}

.hero{

background-attachment:fixed;

}

.locutor-card{

position:relative;

overflow:hidden;

}

.locutor-card::before{

content:"";

position:absolute;

width:100%;

height:100%;

background:linear-gradient(transparent,rgba(0,0,0,.6));

left:0;

bottom:0;

}

footer{

border-top:8px solid #FFD400;

}

body{

background-image:

radial-gradient(circle at top,#ffffff,#f5f5f5);

}

.hero img{

width:220px;

filter:drop-shadow(0 0 20px rgba(255,212,0,.7));

animation:logo 4s infinite;

}

@keyframes logo{

50%{

transform:scale(1.05);

filter:drop-shadow(0 0 35px gold);

}

}

.estado-radio{

display:inline-flex;

align-items:center;

gap:10px;

background:rgba(255,255,255,.12);

padding:12px 24px;

border-radius:40px;

margin:25px 0;

font-weight:600;

backdrop-filter:blur(10px);

}

.punto{

width:14px;

height:14px;

background:#ff0000;

border-radius:50%;

animation:pulso 1s infinite;

}

@keyframes pulso{

50%{

transform:scale(1.6);

opacity:.4;

}

}

#reloj{

margin-top:25px;

font-size:18px;

color:#FFD400;

font-weight:600;

}

.radio-box{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

background:white;

padding:60px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.radio-left h2{

font-size:45px;

margin:20px 0;

}

.radio-left h3{

color:#FFD400;

margin-bottom:20px;

}

.radio-left p{

line-height:1.8;

color:#555;

}

.radio-badge{

display:inline-block;

padding:12px 24px;

background:red;

color:white;

font-weight:bold;

border-radius:40px;

animation:pulse 1s infinite;

}

.radio-right{

position:relative;

background:linear-gradient(160deg,#1c1c1c 0%,#0a0a0a 100%);

padding:3px;

border-radius:24px;

text-align:center;

box-shadow:0 25px 60px -15px rgba(0,0,0,.5), 0 0 0 1px rgba(255,212,0,.25);

}

.radio-right::before{

content:"";

position:absolute;

inset:-1px;

border-radius:24px;

padding:1px;

background:linear-gradient(135deg, rgba(255,212,0,.9), rgba(255,212,0,.05) 40%, rgba(255,212,0,.5));

-webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;

mask-composite:exclude;

pointer-events:none;

}

.radio-console-head{

display:flex;

align-items:center;

justify-content:center;

gap:10px;

padding:16px 20px 0;

}

.radio-console-head img{

width:26px;

height:26px;

object-fit:contain;

border-radius:6px;

}

.radio-console-head span{

font-size:12px;

letter-spacing:2px;

font-weight:700;

color:#FFD400;

text-transform:uppercase;

}

.radio-console-dot{

width:7px;

height:7px;

border-radius:50%;

background:#ff3b3b;

box-shadow:0 0 8px 2px rgba(255,59,59,.6);

animation:pulse 1.4s infinite;

}

.radio-console-body{

padding:18px 22px 26px;

}

.ondas{

display:flex;

gap:8px;

margin-top:35px;

align-items:flex-end;

height:60px;

}

.ondas span{

width:8px;

background:#FFD400;

border-radius:20px;

animation:ondas 1s infinite ease-in-out;

}

.ondas span:nth-child(2){

animation-delay:.2s;

}

.ondas span:nth-child(3){

animation-delay:.4s;

}

.ondas span:nth-child(4){

animation-delay:.6s;

}

.ondas span:nth-child(5){

animation-delay:.8s;

}

@keyframes ondas{

0%{

height:20px;

}

50%{

height:60px;

}

100%{

height:20px;

}

}

@media(max-width:900px){

.radio-box{

grid-template-columns:1fr;

padding:30px;

}

.radio-left h2{

font-size:32px;

}

}
.noticias{

padding:120px 0;

background:#f5f5f5;

}

.news-grid{

display:grid;

grid-template-columns:2fr 1fr;

gap:35px;

}

.news-big{

position:relative;

overflow:hidden;

border-radius:25px;

box-shadow:0 15px 45px rgba(0,0,0,.15);

}

.news-big img{

width:100%;

height:650px;

object-fit:cover;

transition:.7s;

}

.news-big:hover img{

transform:scale(1.08);

}

.overlay{

position:absolute;

left:0;

right:0;

bottom:0;

padding:45px;

background:linear-gradient(transparent,rgba(0,0,0,.95));

color:white;

}

.overlay h2{

font-size:38px;

margin:20px 0;

}

.overlay p{

line-height:1.8;

margin-bottom:20px;

}

.leer{

background:#FFD400;

padding:15px 28px;

border-radius:40px;

text-decoration:none;

font-weight:bold;

color:#111;

display:inline-block;

}

.news-list{

display:flex;

flex-direction:column;

gap:25px;

}

.mini-news{

display:flex;

gap:20px;

background:white;

padding:18px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}

.mini-news:hover{

transform:translateY(-8px);

}

.mini-news img{

width:150px;

height:110px;

border-radius:15px;

object-fit:cover;

}

.mini-news h4{

margin:12px 0;

font-size:20px;

}

.tag{

display:inline-block;

padding:7px 16px;

border-radius:40px;

font-size:13px;

font-weight:700;

color:white;

}

.rojo{

background:#d50000;

}

.amarillo{

background:#f5b400;

color:black;

}

.verde{

background:#2e7d32;

}

.azul{

background:#1565c0;

}

@media(max-width:900px){

.news-grid{

grid-template-columns:1fr;

}

.news-big img{

height:350px;

}

.overlay h2{

font-size:28px;

}

.mini-news{

flex-direction:column;

}

.mini-news img{

width:100%;

height:220px;

}

}

.team-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

gap:35px;

margin-top:50px;

}

.team-card{

background:white;

border-radius:25px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.10);

transition:.45s;

}

.team-card:hover{

transform:translateY(-12px);

}

.team-image{

position:relative;

overflow:hidden;

}

.team-image img{

width:100%;

height:470px;

object-fit:cover;

transition:.6s;

}

.team-card:hover img{

transform:scale(1.08);

}

.team-overlay{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

display:flex;

justify-content:center;

align-items:center;

background:rgba(0,0,0,.55);

opacity:0;

transition:.4s;

}

.team-card:hover .team-overlay{

opacity:1;

}

.team-overlay a{

padding:15px 28px;

background:#FFD400;

border-radius:50px;

text-decoration:none;

font-weight:bold;

color:#111;

}

.team-content{

padding:35px;

text-align:center;

}

.team-content h3{

font-size:30px;

margin-bottom:12px;

}

.team-content span{

display:inline-block;

padding:8px 20px;

background:#FFD400;

border-radius:30px;

font-weight:700;

margin-bottom:20px;

}

.team-content p{

line-height:1.8;

color:#555;

}

.team-social{

display:flex;

justify-content:center;

gap:15px;

margin-top:25px;

}

.team-social a{

width:45px;

height:45px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#111;

color:white;

transition:.35s;

text-decoration:none;

}

.team-social a:hover{

background:#FFD400;

color:#111;

transform:translateY(-5px);

}

.slider{

position:relative;

width:100%;

height:100vh;

overflow:hidden;

}

.slide{

position:absolute;

width:100%;

height:100%;

opacity:0;

transition:1s;

}

.slide.active{

opacity:1;

z-index:2;

}

.slide .slide-bg{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.45);
}

.caption{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

text-align:center;

color:white;

width:90%;

max-width:900px;

}

.hero-logo{

width:170px;

margin-bottom:25px;

}

.caption h1{

font-size:72px;

margin-bottom:20px;

font-weight:800;

}

.caption p{

font-size:22px;

margin-bottom:35px;

line-height:1.8;

}

.dots{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

display:flex;

gap:12px;

z-index:10;

}

.dot{

width:15px;

height:15px;

border-radius:50%;

background:white;

opacity:.4;

cursor:pointer;

transition:.3s;

}

.dot.active{

opacity:1;

background:#FFD400;

transform:scale(1.3);

}

@media(max-width:768px){

.caption h1{

font-size:42px;

}

.caption p{

font-size:18px;

}

.hero-logo{
    width:150px;
    height:auto;
    margin-bottom:25px;
}

}

/*==========================================================
ADAPTACIÓN MÓVIL (Android / celulares)
Ajustes para que el sitio se vea proporcional en pantallas
angostas, similar a como se ve en PC.
==========================================================*/

@media(max-width:900px){

.hero{
background-attachment:scroll;
}

.radio-box{
padding:30px 20px;
}

.radio-left h2{
font-size:30px;
}

}

@media(max-width:600px){

.container{
width:94%;
}

.logo h2{
font-size:20px;
}

.logo img{
width:50px;
height:50px;
}

.live{
padding:8px 14px;
font-size:14px;
}

.hero h1{
font-size:30px;
}

.hero h3{
font-size:18px;
}

.hero p{
font-size:14px;
}

.marquesina h4{
padding:12px 14px;
font-size:14px;
}

.marquesina p{
padding:12px;
font-size:14px;
}

.titulo h2{
font-size:26px;
}

.titulo p{
font-size:14px;
}

.live-section,
.noticias,
.locutores,
.galeria,
.videos,
.contacto{
padding:60px 0;
}

section#programacion .container{
padding-top:10px;
}

.news-big img{
height:220px;
}

.team-card img{
height:auto;
}

.contacto-card{
padding:28px 20px;
}

footer .redes{
gap:15px;
}

.whatsapp{
width:55px;
height:55px;
right:14px;
bottom:14px;
}

#topo{
width:48px;
height:48px;
left:14px;
bottom:14px;
}

}
