/* ─── PROFESSIONAL PAGES STYLES ─── */

/* Global Page Elements */
.page-hero {
    background: #0a192f;
    background-image: radial-gradient(circle at 70% 30%, #112240 0%, transparent 70%),
                      radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px;
    padding: 60px 0;
    margin-bottom: 0;
    color: white;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.page-hero-icon {
    font-size: 3.5rem;
    color: var(--accent);
    filter: drop-shadow(0 0 20px rgba(227,0,0,0.3));
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.page-hero-sub {
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: 500;
}

.page-card {
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    margin-top: 0; /* Reseted from -40px */
    position: relative;
    z-index: 20;
    padding: 40px;
}

/* ─── NOSOTROS.PHP ─── */
.about-hero-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    padding: 20px 0 50px;
    border-bottom: 1px solid #f1f5f9;
}

.about-logo-img {
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.08));
}

.about-section-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.about-history-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.about-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 35px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.about-mv-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
}

.about-mv-card {
    padding: 35px 25px;
    border-radius: 25px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.about-mv-card:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.accent-red .mv-icon { background: #fee2e2; color: #dc2626; }
.accent-gold .mv-icon { background: #fef3c7; color: #d97706; }
.accent-blue .mv-icon { background: #e0f2fe; color: #0284c7; }

.about-mv-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-mv-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* ─── PROGRAMA.PNG INSPIRED LIVE BANNER ─── */
.live-program-banner {
    background: #ffca01;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(255, 202, 1, 0.2);
}

.live-banner-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.live-status-pill {
    border: 2px solid #008000;
    color: #000;
    padding: 4px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-status-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.live-announcer-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
}

.live-banner-divider {
    width: 3px;
    height: 50px;
    background: #4a9d3c;
}

.live-banner-right {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.live-show-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #000;
    text-transform: uppercase;
}

.live-show-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
}

@media (max-width: 768px) {
    .live-program-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    .live-banner-divider {
        width: 60px;
        height: 3px;
    }
}

/* ─── PROGRAMACION.PHP (MODERN GRID) ─── */
.prog-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.prog-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.prog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 27, 75, 0.08);
    border-color: rgba(13, 27, 75, 0.1);
}

.prog-card.is-live {
    border: 2px solid var(--accent);
    background: linear-gradient(to bottom, #ffffff, #fffafa);
}

.live-now-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
    0% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(1.05); }
    100% { opacity: 1; }
}

.prog-icon-wrap {
    width: 55px;
    height: 55px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.prog-card:hover .prog-icon-wrap {
    background: var(--primary);
    color: #fff;
    transform: rotate(-10deg);
}

.prog-card.is-live .prog-icon-wrap {
    background: var(--accent);
    color: #fff;
}

.prog-details h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.prog-announcer {
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prog-announcer i { color: var(--accent); font-size: 0.8rem; }

.prog-time-box {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prog-day-pill {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    color: #fff;
}

.prog-hours {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.prog-hours i { color: var(--gold); }

/* ─── PUBLICIDAD.PHP ─── */
.pub-banner {
    background: #061121;
    border-radius: 25px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.pub-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(227,0,0,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.pub-banner-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #f1c40f;
    line-height: 1.1;
    margin-bottom: 20px;
}

.pub-banner-text p {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 35px;
}

.pub-cta-btn {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.pub-cta-btn:hover { transform: scale(1.05); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4); }

.pub-banner-img { position: relative; }
.pub-banner-img img { width: 100%; filter: drop-shadow(0 0 30px rgba(241,196,15,0.2)); }

.pub-banner-badge {
    position: absolute;
    bottom: -10px;
    right: 0;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.8rem;
}

.pub-benefits { padding: 60px 40px; }
.pub-benefits-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 40px; text-align: center; color: var(--primary); }

.pub-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.pub-benefit-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.pub-benefit-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.pub-benefit-card p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.pub-contact-bar {
    background: #f1f5f9;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    color: var(--primary);
}

.pub-cta-btn--sm { padding: 12px 25px; font-size: 0.9rem; }
