/*
 * CSS extraído de patterns/radionotas-page-completa.php
 * Generado en S3 (2026-05-13). Carga condicional via functions.php (is_page).
 */

/* ===========================================
   RADIONOTAS - ESTILOS
   Prefijo: rn- (RadioNotas)
   Paleta: Amarillo + Rojo (energía, noticias)
   =========================================== */

:root {
    --rn-yellow: #ffe10c;
    --rn-blue: var(--wp--preset--color--primary);
    --rn-blue-dark: #1565C0;
    --rn-orange: var(--wp--preset--color--secondary);
    --rn-dark: #0a0a0a;
    --rn-card-bg: rgba(255,255,255,0.02);
    --rn-border: rgba(255,255,255,0.08);
    --rn-text: rgba(255,255,255,0.7);
}

.rn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HERO ============ */
.rn-hero {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    background-image: url('https://images.unsplash.com/photo-1504509546545-e000b4a62425?w=1920&q=80');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
}

.rn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(10,10,10,0.92) 0%,
            rgba(10,15,26,0.8) 50%,
            rgba(10,10,10,0.95) 100%
        );
    pointer-events: none;
}

/* News ticker decoration */
.rn-ticker {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 350px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.rn-ticker-line {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--rn-blue), var(--rn-orange), transparent);
    margin-bottom: 20px;
    animation: rn-pulse 2s ease-in-out infinite;
}

.rn-ticker-line:nth-child(2) { animation-delay: 0.3s; width: 80%; }
.rn-ticker-line:nth-child(3) { animation-delay: 0.6s; width: 60%; }
.rn-ticker-line:nth-child(4) { animation-delay: 0.9s; width: 90%; }
.rn-ticker-line:nth-child(5) { animation-delay: 1.2s; width: 70%; }

@keyframes rn-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.rn-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.rn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(33, 150, 243, 0.15);
    border: 1px solid rgba(33, 150, 243, 0.3);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--rn-blue);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.rn-hero-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--rn-blue);
}

.rn-hero-title {
    font-size: 58px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.rn-hero-title span {
    background: linear-gradient(135deg, var(--rn-orange) 0%, var(--rn-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rn-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.rn-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.rn-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--rn-yellow) 0%, var(--rn-orange) 100%);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 16px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rn-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 225, 12, 0.4);
    color: #0a0a0a;
}

.rn-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 60px;
    text-decoration: none;
    border: 2px solid rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.rn-btn-secondary:hover {
    border-color: var(--rn-blue);
    background: rgba(33, 150, 243, 0.15);
}

/* Coverage badges */
.rn-coverage-bar {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.rn-coverage-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rn-coverage-flags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rn-flag {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

/* ============ WHAT IS SECTION ============ */
.rn-what-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--rn-dark) 0%, #0f0f0f 100%);
}

.rn-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.rn-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--rn-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rn-section-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.rn-section-desc {
    font-size: 18px;
    color: var(--rn-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.rn-what-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rn-what-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rn-what-content p {
    font-size: 17px;
    color: var(--rn-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.rn-what-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rn-what-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rn-what-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--rn-yellow) 0%, var(--rn-blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rn-what-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: #000;
}

.rn-what-feature-text {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.rn-what-visual {
    position: relative;
}

.rn-mockup {
    background: var(--rn-card-bg);
    border: 1px solid var(--rn-border);
    border-radius: 20px;
    overflow: hidden;
}

.rn-mockup-header {
    background: linear-gradient(135deg, var(--rn-blue) 0%, var(--rn-red-dark) 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rn-mockup-logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.rn-mockup-logo span {
    color: var(--rn-yellow);
}

.rn-mockup-body {
    padding: 24px;
}

.rn-mockup-chart {
    margin-bottom: 20px;
}

.rn-mockup-chart-title {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.rn-mockup-chart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rn-border);
}

.rn-mockup-chart-pos {
    width: 28px;
    height: 28px;
    background: var(--rn-yellow);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.rn-mockup-chart-info {
    flex: 1;
}

.rn-mockup-chart-song {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.rn-mockup-chart-artist {
    font-size: 12px;
    color: #888;
}

.rn-mockup-chart-trend {
    font-size: 12px;
    color: var(--wp--preset--color--primary);
    font-weight: 600;
}

/* ============ SERVICES ============ */
.rn-services-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.rn-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rn-service-card {
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(33, 150, 243, 0.15);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    transition: all 0.3s ease;
}

.rn-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(33, 150, 243, 0.4);
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.1);
}

.rn-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--rn-yellow) 0%, var(--rn-blue) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.rn-service-icon svg {
    width: 34px;
    height: 34px;
    stroke: #000;
}

.rn-service-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.rn-service-desc {
    font-size: 15px;
    color: var(--rn-text);
    line-height: 1.6;
}

/* ============ BENEFITS ============ */
.rn-benefits-section {
    padding: 100px 0;
    background: var(--rn-dark);
}

.rn-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.rn-benefit-card {
    background: var(--rn-card-bg);
    border: 1px solid var(--rn-border);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.rn-benefit-card:hover {
    border-color: rgba(255, 225, 12, 0.3);
    transform: translateX(6px);
}

.rn-benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 225, 12, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rn-benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--rn-yellow);
}

.rn-benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.rn-benefit-content p {
    font-size: 15px;
    color: var(--rn-text);
    line-height: 1.6;
    margin: 0;
}

/* ============ STATS ============ */
.rn-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--rn-blue) 0%, var(--rn-red-dark) 100%);
}

.rn-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rn-stat-card {
    text-align: center;
    padding: 24px;
}

.rn-stat-value {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.rn-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

/* ============ CTA ============ */
.rn-cta-section {
    padding: 100px 0;
    background: var(--rn-dark);
    position: relative;
    overflow: hidden;
}

.rn-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 225, 12, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.rn-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rn-cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.rn-cta-title span {
    background: linear-gradient(135deg, var(--rn-yellow) 0%, var(--rn-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rn-cta-desc {
    font-size: 19px;
    color: var(--rn-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.rn-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rn-cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: #666;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .rn-what-layout {
        grid-template-columns: 1fr;
    }
    .rn-services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .rn-benefits-grid {
        grid-template-columns: 1fr;
    }
    .rn-ticker {
        display: none;
    }
}

@media (max-width: 768px) {
    .rn-hero {
        padding: 80px 0 60px;
    }
    .rn-hero-title {
        font-size: 38px;
    }
    .rn-section-title {
        font-size: 32px;
    }
    .rn-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rn-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .rn-hero-buttons,
    .rn-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .rn-coverage-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .rn-benefit-card {
        flex-direction: column;
        text-align: center;
    }
    .rn-benefit-icon {
        margin: 0 auto;
    }
}

