/* Hits 92.1 — estilos compartidos del sitio (menú + footer) */
@import url("fonts-hits92.css?v=1789488058");

        /* Reset específico para el menú - evita conflictos con Elementor */
        .hits92-header * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Header y Navegación */
        .hits92-header {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            z-index: 999999 !important;
            background: rgba(0, 0, 0, 0.95) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(253, 155, 0, 0.2);
            transition: all 0.3s ease;
            font-family: 'Huninn', 'Poppins', -webkit-system-font, 'Segoe UI', Roboto, sans-serif !important;
        }

        /* Agregar padding-top al body cuando el menú esté presente */
        body.hits92-menu-active {
            padding-top: 80px !important;
        }

        /* Alternativa: clase para el contenido principal */
        .hits92-content-wrapper {
            padding-top: 80px !important;
        }

        .hits92-header.scrolled {
            background: rgba(0, 0, 0, 0.98) !important;
            box-shadow: 0 5px 30px rgba(253, 155, 0, 0.1);
        }

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

        /* Logo */
        .hits92-logo {
            display: flex;
            align-items: center;
            text-decoration: none !important;
            transition: all 0.3s ease;
        }

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

        .hits92-logo img {
            height: 50px !important;
            width: auto !important;
            transition: all 0.3s ease;
            display: block !important;
        }

        .hits92-logo:hover img {
            filter: drop-shadow(0 0 15px rgba(253, 155, 0, 0.6));
        }

        /* Navegación principal */
        .hits92-nav-menu {
            display: flex !important;
            list-style: none !important;
            align-items: center;
            gap: 10px;
            margin: 0 !important;
            padding: 0 !important;
        }

        .hits92-nav-item {
            position: relative;
            margin: 0 !important;
            padding: 0 !important;
        }

        .hits92-nav-link {
            color: #ffffff !important;
            text-decoration: none !important;
            padding: 12px 20px !important;
            border-radius: 25px;
            font-weight: 500 !important;
            font-size: 0.95rem !important;
            transition: all 0.3s ease;
            display: flex !important;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
            font-family: 'Huninn', 'Poppins', -webkit-system-font, 'Segoe UI', Roboto, sans-serif !important;
        }

        .hits92-nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FD9B00, #E30300);
            transition: left 0.3s ease;
            border-radius: 25px;
        }

        .hits92-nav-link:hover::before,
        .hits92-nav-link.active::before {
            left: 0;
        }

        .hits92-nav-link:hover,
        .hits92-nav-link.active {
            color: #ffffff !important;
            transform: translateY(-2px);
            text-decoration: none !important;
        }

        .hits92-nav-link span {
            position: relative;
            z-index: 2;
        }

        .hits92-nav-link i,
        .hits92-nav-link .fa,
        .hits92-nav-link .fas,
        .hits92-nav-link .far,
        .hits92-nav-link .fab {
            position: relative;
            z-index: 2;
            font-size: 0.9rem !important;
            font-family: "Font Awesome 6 Free" !important;
            font-weight: 900 !important;
            font-style: normal !important;
        }
        .hits92-nav-link .fab {
            font-family: "Font Awesome 6 Brands" !important;
            font-weight: 400 !important;
        }

        /* Dropdown para Locutores */
        .hits92-dropdown {
            position: relative;
        }

        .hits92-dropdown-toggle::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free' !important;
            font-weight: 900 !important;
            margin-left: 8px;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .hits92-dropdown.active .hits92-dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .hits92-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.95) !important;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(253, 155, 0, 0.2);
            border-radius: 15px;
            min-width: 250px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            z-index: 999999 !important;
        }

        .hits92-dropdown.active .hits92-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .hits92-dropdown-item {
            display: block !important;
            color: #cccccc !important;
            text-decoration: none !important;
            padding: 12px 20px !important;
            font-size: 0.9rem !important;
            transition: all 0.3s ease;
            border-radius: 10px;
            margin: 5px !important;
            position: relative;
            overflow: hidden;
            font-family: 'Huninn', 'Poppins', -webkit-system-font, 'Segoe UI', Roboto, sans-serif !important;
        }

        .hits92-dropdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(253, 155, 0, 0.1), transparent);
            transition: left 0.4s ease;
        }

        .hits92-dropdown-item:hover::before {
            left: 100%;
        }

        .hits92-dropdown-item:hover {
            background: rgba(253, 155, 0, 0.1) !important;
            color: #FD9B00 !important;
            transform: translateX(5px);
            text-decoration: none !important;
        }

        /* Radio Player */
        .hits92-radio-player {
            display: flex !important;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #FD9B00, #E30300) !important;
            color: #ffffff !important;
            padding: 8px 15px !important;
            border-radius: 25px;
            font-weight: 700 !important;
            font-size: 0.85rem !important;
            border: none !important;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-family: 'Huninn', 'Poppins', -webkit-system-font, 'Segoe UI', Roboto, sans-serif !important;
        }

        .hits92-radio-player::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .hits92-radio-player:hover::before {
            left: 100%;
        }

        .hits92-radio-player:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(253, 155, 0, 0.4);
        }

        .hits92-radio-player.playing {
            animation: hits92-radio-pulse 2s ease-in-out infinite;
        }

        @keyframes hits92-radio-pulse {
            0%, 100% { 
                box-shadow: 0 0 10px rgba(253, 155, 0, 0.5);
            }
            50% { 
                box-shadow: 0 0 20px rgba(253, 155, 0, 0.8), 0 0 30px rgba(227, 3, 0, 0.3);
            }
        }

        .hits92-radio-player-icon {
            font-size: 1rem !important;
            transition: all 0.3s ease;
        }

        .hits92-radio-player.playing .hits92-radio-player-icon {
            animation: hits92-radio-spin 2s linear infinite;
        }

        @keyframes hits92-radio-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hits92-radio-player-text {
            position: relative;
            z-index: 2;
        }

        /* Audio element hidden */
        .hits92-radio-audio {
            display: none !important;
        }

        /* Frequency badge */
        .hits92-frequency-badge {
            background: rgba(255, 255, 255, 0.1) !important;
            color: #FD9B00 !important;
            padding: 8px 15px !important;
            border-radius: 20px;
            font-weight: 700 !important;
            font-size: 0.85rem !important;
            display: flex !important;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(253, 155, 0, 0.3);
            transition: all 0.3s ease;
            font-family: 'Huninn', 'Poppins', -webkit-system-font, 'Segoe UI', Roboto, sans-serif !important;
        }

        .hits92-frequency-badge:hover {
            background: rgba(253, 155, 0, 0.1) !important;
            border-color: #FD9B00;
        }

        /* Botón móvil */
        .hits92-mobile-toggle {
            display: none !important;
            background: none !important;
            border: none !important;
            color: #ffffff !important;
            font-size: 1.5rem !important;
            cursor: pointer;
            padding: 10px !important;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hits92-mobile-toggle:hover {
            background: rgba(253, 155, 0, 0.2) !important;
            color: #FD9B00 !important;
        }

        /* Espaciado para el contenido principal - REMOVIDO */

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hits92-nav-menu {
                gap: 5px;
            }

            .hits92-nav-link {
                padding: 10px 15px !important;
                font-size: 0.9rem !important;
            }

            .hits92-dropdown-menu {
                min-width: 220px;
            }
        }

        @media (max-width: 768px) {
            .hits92-mobile-toggle {
                display: block !important;
            }

            .hits92-nav-menu {
                position: fixed !important;
                top: 80px !important;
                left: 0 !important;
                right: 0 !important;
                background: rgba(0, 0, 0, 0.98) !important;
                backdrop-filter: blur(20px);
                flex-direction: column !important;
                padding: 30px 20px !important;
                gap: 10px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-top: 1px solid rgba(253, 155, 0, 0.2);
                max-height: calc(100vh - 80px);
                overflow-y: auto;
            }

            .hits92-nav-menu.active {
                transform: translateY(0) !important;
                opacity: 1 !important;
                visibility: visible !important;
            }

            .hits92-nav-item {
                width: 100% !important;
            }

            .hits92-nav-link {
                width: 100% !important;
                justify-content: center;
                padding: 15px 20px !important;
                font-size: 1rem !important;
            }

            .hits92-dropdown-menu {
                position: static !important;
                width: 100% !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                margin-top: 10px !important;
                background: rgba(253, 155, 0, 0.1) !important;
                border: 1px solid rgba(253, 155, 0, 0.3) !important;
                display: none !important;
            }

            .hits92-dropdown.active .hits92-dropdown-menu {
                display: block !important;
            }

            .hits92-radio-player {
                margin-top: 20px !important;
                justify-content: center;
                width: 200px;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .hits92-frequency-badge {
                margin-top: 15px !important;
                justify-content: center;
            }
        }

        /* Partículas removidas para menú limpio */

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

        body {
            background: #000000;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

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

        /* Footer Styles — tipografía Huninn (igual que el menú) */
        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            border-top: 2px solid rgba(253, 155, 0, 0.2);
            position: relative;
            overflow: hidden;
            font-family: 'Huninn', 'Poppins', sans-serif !important;
        }
        .footer,
        .footer a,
        .footer p,
        .footer li,
        .footer span,
        .footer button {
            font-family: 'Huninn', 'Poppins', sans-serif !important;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(253, 155, 0, 0.02) 0%, rgba(227, 3, 0, 0.02) 100%);
        }

        .footer-main {
            padding: 80px 0 40px;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .footer-section {
            color: #ffffff;
        }

        .footer-logo {
            max-width: 100%;
        }

        .footer-logo-img {
            max-width: 200px;
            height: auto;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

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

        .footer-description {
            color: #cccccc;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .footer-frequency {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #FD9B00, #E30300);
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .footer-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #FD9B00;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 3px;
            background: linear-gradient(90deg, #FD9B00, #E30300);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            padding: 8px 0;
        }

        .footer-links a:hover {
            color: #FD9B00;
            transform: translateX(10px);
        }

        .footer-links a i {
            width: 18px;
            color: #FD9B00;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-item i {
            color: #FD9B00;
            font-size: 1.2rem;
            margin-top: 5px;
            min-width: 20px;
        }

        .contact-item strong {
            color: #ffffff;
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .contact-item p {
            color: #cccccc;
            line-height: 1.5;
            margin: 0;
        }

        .contact-item a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #FD9B00;
        }

        .footer-map-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #FD9B00, #E30300);
            color: #ffffff;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 15px;
        }

        .footer-map-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(253, 155, 0, 0.3);
        }

        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #cccccc;
            text-decoration: none;
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: #ffffff;
            border-color: #FD9B00;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(253, 155, 0, 0.2);
        }

        .social-link i {
            width: 20px;
            font-size: 1.3rem;
        }

        .social-link.facebook:hover {
            background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(24, 119, 242, 0.2));
        }

        .social-link.facebook:hover i { 
            color: #1877f2; 
        }

        .social-link.instagram:hover {
            background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(228, 64, 95, 0.2));
        }

        .social-link.instagram:hover i { 
            color: #e4405f; 
        }

        .social-link.youtube:hover {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.2));
        }

        .social-link.youtube:hover i { 
            color: #ff0000; 
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.5);
            border-top: 1px solid rgba(253, 155, 0, 0.2);
            padding: 30px 0;
            position: relative;
            z-index: 2;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: #cccccc;
            font-size: 0.9rem;
        }

        .footer-copyright a {
            color: #FD9B00;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-copyright a:hover {
            color: #E30300;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: #888888;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 15px;
            border-radius: 20px;
        }

        .footer-bottom-links a:hover {
            color: #FD9B00;
            background: rgba(253, 155, 0, 0.1);
            transform: translateY(-2px);
        }

        /* Iconos específicos para las políticas */
        .footer-bottom-links a.privacy-link::before {
            content: '\f3ed';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 8px;
            color: #FD9B00;
        }

        .footer-bottom-links a.terms-link::before {
            content: '\f571';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 8px;
            color: #FD9B00;
        }

        .footer-bottom-links a.cookies-link::before {
            content: '\f563';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 8px;
            color: #FD9B00;
        }

        /* Animación sutil para los enlaces de políticas */
        .footer-bottom-links a {
            border: 1px solid transparent;
        }

        .footer-bottom-links a:hover {
            border-color: rgba(253, 155, 0, 0.3);
            box-shadow: 0 4px 12px rgba(253, 155, 0, 0.15);
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .footer-main {
                padding: 60px 0 30px;
            }

            .footer-social {
                align-items: center;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .contact-item {
                justify-content: center;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                padding: 50px 0 20px;
            }

            .footer-logo-img {
                max-width: 150px;
            }

            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .footer-bottom-links a {
                padding: 10px 20px;
                text-align: center;
                min-width: 200px;
            }

            .container {
                padding: 0 15px;
            }
        }

        /* Efecto especial para enlaces de políticas en hover */
        .footer-bottom-links a:hover::before {
            animation: pulse-icon 0.6s ease-in-out;
        }

        @keyframes pulse-icon {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

/* Base site */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: #000000;
  color: #ffffff;
  font-family: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.hits92-menu-active {
  padding-top: 80px !important;
}
a { color: #FD9B00; }
img { max-width: 100%; height: auto; }
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* WhatsApp flotante (reemplazo del chatbot Tawk) — lado derecho */
.hits92-whatsapp {
  position: fixed;
  right: 22px;
  left: auto;
  bottom: 24px;
  z-index: 999998;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  font-family: 'Poppins', sans-serif;
}
.hits92-whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 3px rgba(253, 155, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.hits92-whatsapp:hover .hits92-whatsapp-btn {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 0 0 4px rgba(253, 155, 0, 0.35);
  color: #ffffff !important;
}
.hits92-whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: hits92-wa-pulse 2s ease-out infinite;
}
@keyframes hits92-wa-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
.hits92-whatsapp-label {
  background: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  border: 1px solid rgba(253, 155, 0, 0.45);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  max-width: 170px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hits92-whatsapp-label strong {
  display: block;
  color: #FD9B00;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hits92-whatsapp:hover .hits92-whatsapp-label,
.hits92-whatsapp:focus-visible .hits92-whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .hits92-whatsapp {
    right: 14px;
    left: auto;
    bottom: 18px;
  }
  .hits92-whatsapp-btn {
    width: 54px;
    height: 54px;
    font-size: 1.65rem;
  }
  .hits92-whatsapp-label {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hits92-whatsapp-btn::after { animation: none; }
}

