/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gray-color: #7f8c8d;
    --success-color: #2ecc71;
    --donation-color: #e74c3c;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Header */
header {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-container h1 {
    color: white;
    font-size: 1.8rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-menu a i {
    font-size: 1.1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Hero Section - Live Broadcast */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.95));
    color: white;
    padding: 60px 0;
}

.hero-title {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: #bdc3c7;
}

/* Live Container - Two Columns */
.live-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.live-left, .live-right {
    display: flex;
    flex-direction: column;
}

.live-now-card, .broadcast-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.live-now-card h3, .broadcast-card h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Audio Container (Left Side) */
.audio-container {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.stream-info-display {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.now-playing-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

#current-song {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    min-height: 40px;
}

.frequency {
    font-size: 1rem;
    color: #bdc3c7;
    margin-bottom: 15px;
}

/* Custom Audio Player */
.custom-audio-player {
    margin-top: 15px;
}

.player-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.control-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    flex: 1;
    min-width: 120px;
}

.play-btn {
    background-color: var(--success-color);
    color: white;
}

.pause-btn {
    background-color: var(--accent-color);
    color: white;
}

.control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
}

.volume-control i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

#volumeSlider {
    flex: 1;
    height: 8px;
    -webkit-appearance: none;
    background: #7f8c8d;
    border-radius: 4px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

#volumeValue {
    color: white;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

.player-visual {
    margin-top: 20px;
}

.visualizer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    gap: 5px;
    margin-bottom: 15px;
}

.bar {
    width: 8px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 4px;
    animation: visualizer 1.5s ease-in-out infinite;
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.5s; }
.bar:nth-child(7) { animation-delay: 0.6s; }
.bar:nth-child(8) { animation-delay: 0.7s; }

@keyframes visualizer {
    0%, 100% { height: 20px; }
    50% { height: 60px; }
}

.stream-quality {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Video Container (Right Side) */
.video-container {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.live-indicator {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 600;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.video-responsive {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    margin-top: 15px;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.video-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-info i {
    color: var(--primary-color);
}

.broadcast-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.broadcast-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.broadcast-stat i {
    font-size: 2rem;
    color: var(--primary-color);
}

.broadcast-stat h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.broadcast-stat p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Programming Section */
.programming {
    background-color: white;
}

.programming-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.schedule-card, .special-program-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.schedule-card h3, .special-program-card h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.schedule-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.schedule-tab.active {
    color: var(--primary-color);
}

.schedule-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.schedule-content {
    height: 100%;
    overflow-y: auto;
    max-height: 400px;
}

.day-schedule {
    display: none;
}

.day-schedule.active {
    display: block;
}

.day-schedule ul {
    list-style: none;
}

.day-schedule li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}

.day-schedule li:last-child {
    border-bottom: none;
}

.time {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 100px;
}

.program {
    font-weight: 500;
}

/* Special Program - Club de Oración */
.special-program-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-time {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.program-time i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 5px;
}

.program-time h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.program-time p {
    margin-bottom: 5px;
    color: var(--gray-color);
}

/* Contenedor para el embed de Canva */
.canva-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.3415%;
    padding-bottom: 0;
    box-shadow: 0 2px 8px rgba(63,69,81,0.16);
    margin-top: 1.6em;
    margin-bottom: 0.9em;
    overflow: hidden;
    border-radius: 8px;
    will-change: transform;
}

.canva-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    padding: 0;
    margin: 0;
}

.program-note {
    background-color: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.program-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

/* Frecuencias */
.djs {
    background-color: #f8f9fa;
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.dj-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dj-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.dj-info {
    padding: 20px;
}

.dj-info h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.dj-info p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card, .mv-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-card h3, .mv-card h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat p {
    color: var(--gray-color);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Misión, Visión y Valores */
.mv-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.mv-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.mv-content {
    flex: 1;
}

.mv-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.values-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
    border-radius: 8px;
}

/* Donations Section */
.donations {
    background-color: #f8f9fa;
}

.donations-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.donations-info, .donations-form {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.donations-info h3, .donations-form h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donations-info h3 i {
    color: var(--donation-color);
}

.donations-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-color);
}

.donation-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.reason {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(231, 76, 60, 0.05);
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.reason i {
    font-size: 2.5rem;
    color: var(--donation-color);
    margin-bottom: 15px;
}

.reason h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.reason p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.account-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 15px;
}

.account-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.bank-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bank-header i {
    font-size: 1.8rem;
    color: #3498db;
    margin-right: 15px;
}

.bank-info {
    display: flex;
    flex-direction: column;
}

.bank-info h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.account-type {
    background-color: #e8f4fc;
    color: #3498db;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.account-number {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 12px 15px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    letter-spacing: 0.5px;
    border: 1px dashed #d1e6ff;
}

.donation-instructions {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.donation-instructions h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.donation-instructions h4 i {
    color: #3498db;
}

.donation-instructions p {
    margin: 8px 0;
    color: #555;
    line-height: 1.5;
}

.donation-instructions strong {
    color: #2c3e50;
}

/* Contacto - Nueva versión */
.contact {
    background-color: white;
}

.contact-content-full {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-full {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.contact-info-full h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-full h3::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-item-full {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-details p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1.05rem;
}

.phone-numbers p {
    margin-bottom: 5px;
}

.phone-numbers p:last-child {
    margin-bottom: 0;
}

/* Social Media - Estilos mejorados */
.social-media-full {
    text-align: center;
    margin-top: 40px;
}

.social-media-full h4 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.social-media-full h4::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.social-icons-full {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon i {
    font-size: 2.2rem;
    margin-bottom: 8px;
    z-index: 1;
}

.social-icon span {
    font-size: 0.9rem;
    z-index: 1;
}

.social-icon.fb {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.social-icon.yt {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-icon.ig {
    background: linear-gradient(135deg, #E1306C, #C13584);
}

.social-icon.x {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-icon.threads {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: #bdc3c7;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #2980b9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom i.fa-heart {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .live-container, .programming-container, .about-container, .donations-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .djs-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons-full {
        gap: 15px;
    }
    
    .social-icon {
        width: 90px;
        height: 90px;
    }
}

/* MEDIA QUERY PARA MÓVIL */
@media (max-width: 768px) {
    .header-container {
        justify-content: center;
        padding: 0 10px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .logo-container {
        justify-content: center;
        text-align: center;
    }
    
    .logo-container h1 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(44, 62, 80, 0.98);
        z-index: 999;
        padding: 100px 20px 40px;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
        transform: translateX(-100%);
    }
    
    .nav-menu.active {
        display: block;
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        padding: 18px 20px;
        font-size: 1.3rem;
        justify-content: flex-start;
        width: 100%;
        color: white;
        border-left: 4px solid transparent;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        border-radius: 0;
    }
    
    .nav-menu a i {
        margin-right: 15px;
        font-size: 1.5rem;
        width: 30px;
        text-align: center;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: rgba(52, 152, 219, 0.2);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
        padding-left: 30px;
    }
    
    .player-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .control-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-title h2 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .broadcast-info {
        grid-template-columns: 1fr;
    }
    
    .djs-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-info-full {
        padding: 30px 20px;
    }
    
    .contact-item-full {
        padding: 20px;
    }
    
    .social-icon {
        width: 80px;
        height: 80px;
    }
    
    .social-icon i {
        font-size: 1.8rem;
    }
    
    .social-icon span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
    }
    
    .live-now-card, .broadcast-card, .schedule-card, 
    .special-program-card, .about-card, .mv-card,
    .donations-info, .donations-form, .stats-card {
        padding: 20px;
    }
    
    .nav-menu {
        padding-top: 120px;
    }
    
    .logo-container h1 {
        font-size: 1.3rem;
    }
    
    .account-card {
        padding: 15px;
    }
    
    .bank-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bank-header i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .bank-info {
        align-items: center;
    }
    
    .account-number {
        font-size: 1rem;
        padding: 10px;
        word-break: break-all;
    }
    
    .social-icons-full {
        gap: 10px;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
    }
    
    .social-icon i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .social-icon span {
        font-size: 0.7rem;
    }
}

/* Asegurar que el menú se oculte en escritorio */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        transform: none !important;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .logo-container {
        justify-content: flex-start;
    }
}
