/* =====================================================
   1. RESET + VARIABLES
===================================================== */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

body{
background:#000;
}

:root {
    --verde: #2ecc71;
    --naranja: #ff7a00;
    --morado: #6c3483;
    --oscuro: #111;
}

/* =====================================================
   2. HEADER + MENÚ
===================================================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 40px;

    background: transparent;
    transition: all 0.3s ease;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scrolled {
    background: rgba(0,0,0,0.95) !important;
    backdrop-filter: none !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.logo img {
    height: 45px;
}

.nav {
    display: flex;
    align-items: center;
    position: relative;
}

.menu {
    display: flex;
    align-items: center;
}

.menu a {
    position: relative;
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--naranja);
    transition: width 0.3s ease;
}

.menu a:hover {
    color: var(--naranja);
    background: rgba(255,122,0,0.15);
}

.menu a:hover::after {
    width: 100%;
}

/* Botón hamburguesa */
.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
}

/* ANIMACIÓN AL HACER SCROLL */

.reveal{

opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;

}

.reveal.active{

opacity:1;
transform:translateY(0);

}

/* =====================================================
   3. SLIDER PRINCIPAL
===================================================== */

.slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 1.5s ease-in-out;
}

/* CONTENEDOR DEL SLIDE */

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* CAPA DE IMAGEN DEL SLIDE */

.slide-bg {

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    filter: brightness(70%);

    animation: cinematicZoom 10s ease-in-out infinite;

}

/* EFECTO CINEMATOGRÁFICO */

@keyframes cinematicZoom {

    0%{
        transform:scale(1) translateX(0);
    }

    50%{
        transform:scale(1.08) translateX(-2%);
    }

    100%{
        transform:scale(1) translateX(0);
    }

}

/* INDICADORES SLIDER */

.slider-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
    z-index:10;
}

.slider-dots span{

    width:40px;   /* tamaño PC */
    height:4px;

    border-radius:10px;

    background:rgba(255,255,255,0.35);

    transition:0.4s ease;

}

.slider-dots span.active{

    background:#ff7a00;

}

/* =====================================================
   4. SECCIONES GENERALES
===================================================== */

section {
    padding: 20px 20px;
    text-align: center;
}

/* =====================================================
   6. ACEVEDO EMPRENDE (SLIDER)
===================================================== */

.emprende {
    background: #000;
    color: white;
    padding: 20px;
}

.emprende h2 {
    color: orange;
}

.emprende-desc {
    color: #ccc;
    margin-bottom: 30px;
}

.emprende-slider {
    position: relative;
    width: 100%;          /* 🔥 ocupa todo el ancho */
    max-width: none;      /* 🔥 elimina el límite */
    padding: 10px;      /* 🔥 controlas el margen tú */
    box-sizing: border-box;
}

.emprende-track {
    display: flex;
    gap: 5px;
    transition: transform 0.5s ease;
}

.emprende-card {
    min-width: calc(45% - 20px); /* 4 tarjetas */

    background: linear-gradient(180deg, #111, #000);
    padding: 15px;
    border-radius: 15px;
    text-align: center;

    border: 1px solid rgba(255, 122, 0, 0.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.emprende-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
    border-color: #ff7a00; /* naranja */
}


.emprende-card img {
    width: 100%;
    height: auto;       /* o fixed si quieres un alto fijo */
    object-fit: cover;  /* Mantiene la proporción y cubre el contenedor */
    border-radius: 20px; /* Redondea los 4 bordes de la imagen */
}

.emprende-card h3 {
    margin: 1px 0 5px;
}

.emprende-card p {
    font-size: 14px;
    color: #ccc;
}

.emprende-card a {
    display: inline-block;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.emprende-card a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2ee97b, #25d366);
}

/* Flechas emprende */
.emprende-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 28px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.emprende-btn.left { left: 10px; }
.emprende-btn.right { right: 10px; }

/* =====================================================
   7. ACEVEDO TURÍSTICA
===================================================== */

.turismo {
    background: #000;
    color: orange;
    padding: 60px 20px;
}

.turismo-slider {
    position: relative;
    max-width: 1400px;
    margin: 40px auto 0;
    overflow: hidden;
}

.turismo-track {
    display: flex;
    transition: transform 0.5s ease;
}


.turismo-card {
    min-width: 100%;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.turismo-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.turismo-card h3 {
    margin: 20px 0 10px;
}

.turismo-card p {
    padding: 0 20px 25px;
    color: #ccc;
}

.turismo-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}
/* Flechas turismo */
.turismo-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 30px;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 50; /* 🔥 CLAVE */
}


.turismo-btn.left { left: 15px; }
.turismo-btn.right { right: 15px; }





/* ===== TV EN VIVO ===== */
#envivo {
    background: #000;
    color: orange; /* naranja */
    padding-bottom: 5px; /* antes era 50px */
}

#envivo h2 {
    color: orange;
}




/* Elimina scroll lateral */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Sección general */
.tv-section {
    background: #000;
    padding: 60px 20px;
    text-align: center;
}

/* Contenedor */
.tv-container {
    max-width: 800px;
    margin: auto;
}

/* Título */
.tv-title {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* ==============================
   NUEVO REPRODUCTOR TV PROFESIONAL
============================== */

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
}

.video-js {
    width: 100% !important;
    height: 500px !important;
    border-radius: 15px;
}

.live-badge {
    position: absolute;
    background: #e10600;
    color: white;
    padding: 4px 8px;
    font-weight: 600;
    border-radius: 4px;
    top: 12px;
    left: 12px;
    z-index: 10;
    font-size: 11px;
    letter-spacing: 1px;
}


/* =====================================================
   5. BOTONES FLOTANTES
===================================================== */

.whatsapp-float {
    position: fixed;     /* 👈 IMPORTANTE */
    bottom: 20px;        /* 👈 IMPORTANTE */
    right: 20px;         /* 👈 IMPORTANTE */

    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
}


.whatsapp-float img {
    width: 50px;
    height: 50px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Contenedor flotante */
.radio-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
}

/* Caja principal */
.radio-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ff9d00;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Botones */
.radio-icon {
    background: #2a2a2a;
    border: none;
    color: #ccc;
    font-size: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover elegante gris claro */
.radio-icon:hover {
    background: #676565;
    color: #fff;
}

/* Nombre emisora */
.radio-title {
    color: #fffefe;
    font-size: 14px;
    letter-spacing: 1px;
}
.radio-logo {
    width: 26px;
    height: 26px;
    padding: 4px;
    background: #2a2a2a;
    border-radius: 50%;
}

.contenedor {
    max-width: 1200px;   /* ancho máximo estilo web moderna */
    margin: 0 auto;      /* centra horizontalmente */
    padding: 0 20px;     /* espacio lateral en móvil */
}

/* ==========================
   SECCIÓN DESCARGAS
========================== */

.descargas {
    padding: 60px 20px;
    background: #111;
    color: white;
    text-align: center;
}

.descargas h2 {
    color: #ff7a00;
    margin-bottom: 10px;
}

.descargas p {
    color: #ccc;
    margin-bottom: 40px;
}

/* GRID */

.descargas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* TARJETAS */

.descarga-card {

    background: linear-gradient(180deg,#1a1a1a,#0a0a0a);

    border-radius: 20px;

    width: 280px;

    padding: 20px;

    display: flex;
    gap: 18px;
    align-items: center;

    border: 1px solid rgba(255,122,0,0.15);

    box-shadow: 0 10px 25px rgba(0,0,0,0.6);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.descarga-card:hover {

    transform: translateY(-8px) scale(1.02);

    border-color: #ff7a00;

    box-shadow: 0 20px 45px rgba(0,0,0,0.8);
}

/* ICONO */

.descarga-card img {

    width: 85px;
    height: 85px;

    object-fit: contain;

    border-radius: 18px;

    background: #000;
    padding: 10px;
}

/* INFO */

.descarga-info {
    display: flex;
    flex-direction: column;
}

.descarga-card h3 {
    margin: 5px 0;
    color: #ff7a00;
}

.descarga-card p {
    color: #ccc;
    font-size: 14px;
    margin: 5px 0;
}

/* BOTÓN */

.btn-descarga {

    display: inline-block;

    background: linear-gradient(135deg,#25d366,#1ebe5d);

    color: white;

    padding: 10px 25px;

    border-radius: 25px;

    font-weight: bold;

    text-decoration: none;

    margin-top: 5px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn-descarga:hover {

    transform: scale(1.05);

    box-shadow: 0 8px 20px rgba(37,211,102,0.6);

    background: linear-gradient(135deg,#2ee97b,#25d366);
}

/* ================================================
   AJUSTE GLOBAL RESPONSIVE DEFINITIVO
================================================ */

* {
    box-sizing: border-box;
}

img, iframe, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Evita desbordamientos invisibles */
body {
    overflow-x: hidden;
}
/* ===============================
   RESPONSIVE CELULAR COMPLETO
================================ */

@media (max-width: 778px) {

    /* HEADER */
    .header {
        padding: 10px 15px;
        justify-content: space-between;
    }

    body {
        padding-top: 0px;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0,0,0,0.95);
        width: 220px;
        padding: 20px;
        border-radius: 0 0 0 15px;
        align-items: flex-end;
        text-align: right;
    }

    .menu a {
        margin: 10px 0;
        width: 100%;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: white;
    }

    .logo img {
        height: 38px;
    }

    /* SLIDER PRINCIPAL CELULAR */

    .slider {
        height: auto;
    }

    .slide {
        min-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        position: relative;
        overflow: hidden;
    }

    .slide-bg {

        position: absolute;
        top: 0;
        left: 0;

        width: 110%; /* evita ver bordes */
        height: 110%;

        background-size: cover;
        background-position: center;

        filter: brightness(70%);

        animation: cinematicZoomMobile 10s ease-in-out infinite;

    }

/* ZOOM MÁS SUAVE EN CELULAR */

    @keyframes cinematicZoomMobile {

        0%{
            transform:scale(1) translateX(0);
        }

        50%{
            transform:scale(1.04) translateX(-1%);
        }

        100%{
            transform:scale(1) translateX(0);
        }

    }


    /* EMPRENDE */
    .emprende-card {
        min-width: 100%;
    }

    .emprende-track {
        gap: 15px;
    }

    /* TURISMO */
    .turismo-card img {
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    /* TV */
    .tv-container {
        padding: 0 10px;
    }

    .tv-title {
        font-size: 23px;
    }

    .h2 {
        font-size: 23px;
    }

    /* BOTONES */
    .radio-float {
        bottom: 0;
        left: 0;
    }

    .radio-box {
        height: 55px;
        padding: 6px 12px;
        gap: 6px;
    }

    .radio-title {
        font-size: 12px;
    }

    .radio-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .whatsapp-float {
        right: 10px;
        bottom: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float img {
        width: 42px;
        height: 42px;
    }

    /* =========================
       DESCARGAS SOLO CELULAR
    ========================== */

    .descargas-grid {
        flex-direction: column;
        align-items: center;
    }

        .descarga-card {
        width: 90%;
        flex-direction: column;
        text-align: center;
    }

    .video-js {
        height: 250px !important;
    }
    
        /* SLIDER TEXTO EN CELULAR */
    .slider-content {
        bottom: 10px !important;
        left: 10px !important;
        right: auto;
        text-align: left;
        opacity: 0.9;
    }

    .slider-content h1 {
        font-size: 16px !important;
        margin-bottom: 1px;
    }

    .slider-content p {
        font-size: 11px !important;
    }
    
}

/* INDICADORES SLIDER CELULAR */

.slider-dots span{

width:18px;   /* tamaño celular */
height:3px;

}

.slider-dots{

gap:5px;
bottom:12px;

}


/* ===============================
   SOBRE NOSOTROS
================================ */

.sobre-nosotros {
  background: #000;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.sobre-nosotros h2 {
  color: #ff9800;
  margin-bottom: 30px;
  font-size: 28px;
}

.sobre-texto {
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #ccc;
  line-height: 1.7;
}

.sobre-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.sobre-item {
  background: #111;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 122, 0, 0.3);
  font-weight: bold;
  transition: 0.3s ease;
}

.sobre-item:hover {
  background: #ff9800;
  color: black;
  transform: translateY(-3px);
}

.sobre-final {
  font-size: 18px;
  font-weight: bold;
  color: #ff9800;
}

/* ===============================
   FOOTER
================================ */

.footer{
  background:#000;
  color:white;
  padding:50px 10%;
  font-family:Arial, sans-serif;
}

.footer-container{
  display:flex;
  justify-content:center;
}

.footer-col{
  text-align:center;
}

.footer h3{
  color:#ff9800;
  margin-top:15px;
}

.footer a{
  color:white;
  text-decoration:none;
}

.footer ul{
  list-style:none;
  padding:0;
}

.footer ul li{
  margin:8px 0;
}

.logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-bottom:15px;
}

.logos img{
  height:90px;
  width:auto;
  object-fit:contain;
}

.footer-bottom{
  border-top:1px solid #444;
  margin-top:40px;
  padding-top:20px;

  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:15px;
}

.social{
  display:flex;
  justify-content:center;
  gap:25px;
}

.social i {
  font-size: 22px;
}

.social a:hover{
  background:white;
  color:#ff9800;
  border-radius: 60px;
}

.footer-contact{
  text-align:center;
  margin:25px 0;
}

/* ==============================
   HERO PROFESIONAL SLIDER
============================== */

.slider {
    position: relative;
}

.slider-content {
    position: absolute;
    bottom: 100px;
    left: 40px;
    color: white;
    z-index: 5;
    text-align: left;
    opacity: 0.85;
}

.slider-content h1 {
    font-size: 28px;
    margin-bottom: 1px;
    font-weight: 700;
    line-height: 1.1;
}

.slider-content p {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
    color: #ddd;
}

.btn-slider {
    background: #ff7a00;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-slider:hover {
    background: #ff9500;
    transform: scale(1.05);
}

/* ===============================
   SECCIÓN NOTICIAS PRO
================================ */

.noticias {
    background: #000;
    color: white;
    padding: 80px 20px;
}

.noticias h2 {
    color: #ff7a00;
    text-align: center;
    margin-bottom: 10px;
}

.noticias-desc {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
}

.noticias-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.noticia-principal {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.noticia-principal img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.noticia-contenido {
    padding: 25px;
}

.categoria {
    display: inline-block;
    background: #ff7a00;
    color: black;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    margin-bottom: 10px;
}

.btn-noticia {
    display: inline-block;
    margin-top: 15px;
    background: #ff7a00;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-noticia:hover {
    background: #ff9500;
}

.noticias-secundarias {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.noticia-card {
    display: flex;
    gap: 15px;
    background: #111;
    padding: 15px;
    border-radius: 15px;
    align-items: center;
    transition: 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.noticia-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.noticia-card h4 {
    margin: 5px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .noticias-grid {
        grid-template-columns: 1fr;
    }
}