/* =============================================
   RADIO PAGE — HIGH IMPACT
   ============================================= */

/* ---- Radio Hero: Frequency visualizer ---- */
.mk-radio-hero {
    position: relative;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.mk-radio-hero__freq {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.15;
}
.mk-radio-hero__freq svg {
    width: 100%;
    max-width: 1400px;
    height: auto;
}
.mk-radio-hero__freq-wave {
    stroke: var(--red);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: mkFreqDraw 3s ease forwards 0.5s;
}
@keyframes mkFreqDraw {
    to { stroke-dashoffset: 0; }
}
.mk-radio-hero__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211,64,61,0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mkRadioGlow 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes mkRadioGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.3); }
}
.mk-radio-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}
.mk-radio-hero__dial {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(211,64,61,0.12);
    border: 1px solid rgba(211,64,61,0.25);
    padding: 10px 28px;
    border-radius: 40px;
    margin-bottom: 32px;
    opacity: 0;
    animation: mkSlideUp 0.8s ease forwards 0.3s;
}
.mk-radio-hero__dial-dot {
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    animation: mkPulse 2s ease-in-out infinite;
}
.mk-radio-hero__dial-text {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
}
.mk-radio-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(52px, 10vw, 130px);
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    margin: 0 0 12px;
    opacity: 0;
    animation: mkSlideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.5s;
}
.mk-radio-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #d3403d, #ff686a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mk-radio-hero__sub {
    font-family: var(--font-primary);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    margin: 0 0 40px;
    opacity: 0;
    animation: mkSlideUp 1s ease forwards 0.7s;
}
.mk-radio-hero__cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: mkSlideUp 1s ease forwards 1s;
}
.mk-radio-hero__city {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    transition: all 0.3s;
}
.mk-radio-hero__city:hover {
    border-color: var(--red);
    color: var(--red);
}
@media (max-width: 600px) {
    .mk-radio-hero { min-height: 85vh; }
    .mk-radio-hero__cities { gap: 8px; }
    .mk-radio-hero__city { font-size: 10px; padding: 6px 14px; }
}

/* ---- Radio: Stats marquee ---- */
.mk-radio-marquee {
    background: var(--red);
    padding: 18px 0;
    overflow: hidden;
}
.mk-radio-marquee__track {
    display: flex;
    gap: 60px;
    animation: mkMarquee 22s linear infinite;
    width: max-content;
}
.mk-radio-marquee__item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-family: var(--font-primary);
    color: #fff;
}
.mk-radio-marquee__item strong {
    font-size: 22px;
    font-weight: 900;
}
.mk-radio-marquee__item span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
}
.mk-radio-marquee__item::after {
    content: '\2022';
    margin-left: 48px;
    opacity: 0.4;
}

/* ---- Radio: Cobertura / Mapa ---- */
.mk-radio-cobertura {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}
.mk-radio-cobertura__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.mk-radio-cobertura__tag {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}
.mk-radio-cobertura__title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 20px;
}
.mk-radio-cobertura__desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
}
.mk-radio-cobertura__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.mk-radio-cobertura__station {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: all 0.3s;
}
.mk-radio-cobertura__station:hover {
    background: rgba(211,64,61,0.08);
    border-color: rgba(211,64,61,0.2);
}
.mk-radio-cobertura__station-icon {
    width: 36px;
    height: 36px;
    background: rgba(211,64,61,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}
.mk-radio-cobertura__station-name {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.mk-radio-cobertura__station-freq {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
/* Map visual */
.mk-radio-cobertura__map {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mk-radio-cobertura__map-visual {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 360 / 460;
    margin: 0 auto;
}
.mk-radio-cobertura__tower {
    position: absolute;
    top: 46%;
    left: 44%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mk-radio-cobertura__tower-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 3;
    position: relative;
    box-shadow: 0 0 24px rgba(211,64,61,0.4);
}
.mk-radio-cobertura__wave {
    position: absolute;
    top: 50%;
    left: 42%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(211,64,61,0.2);
    border-radius: 50%;
    animation: mkRadioWave 3s ease-out infinite;
}
.mk-radio-cobertura__wave:nth-child(1) { width: 140px; height: 140px; animation-delay: 0s; }
.mk-radio-cobertura__wave:nth-child(2) { width: 220px; height: 220px; animation-delay: 0.6s; }
.mk-radio-cobertura__wave:nth-child(3) { width: 300px; height: 300px; animation-delay: 1.2s; }
.mk-radio-cobertura__wave:nth-child(4) { width: 380px; height: 380px; animation-delay: 1.8s; }
@keyframes mkRadioWave {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}
/* Map image behind dots */
.mk-radio-cobertura__map-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    opacity: 0.85;
    pointer-events: none;
}
/* Station dots on map */
.mk-radio-cobertura__dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--red);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 12px rgba(211,64,61,0.5);
    animation: mkDotPulse 2s ease-in-out infinite;
}
.mk-radio-cobertura__dot::after {
    content: attr(data-city);
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    letter-spacing: 1px;
}
/* Dots on the right: show label to the left */
.mk-radio-cobertura__dot.label-left::after {
    left: auto;
    right: calc(100% + 8px);
    transform: none;
    top: 1px;
}
@keyframes mkDotPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(211,64,61,0.5); }
    50% { box-shadow: 0 0 24px rgba(211,64,61,0.8); }
}
/* Animation delays for city dots (positions set via inline styles) */
.mk-radio-cobertura__dot:nth-child(6) { animation-delay: 0s; }
.mk-radio-cobertura__dot:nth-child(7) { animation-delay: 0.3s; }
.mk-radio-cobertura__dot:nth-child(8) { animation-delay: 0.6s; }
.mk-radio-cobertura__dot:nth-child(9) { animation-delay: 0.9s; }
.mk-radio-cobertura__dot:nth-child(10) { animation-delay: 1.2s; }
.mk-radio-cobertura__dot:nth-child(11) { animation-delay: 1.5s; }
.mk-radio-cobertura__dot:nth-child(12) { animation-delay: 1.8s; }
.mk-radio-cobertura__dot:nth-child(13) { animation-delay: 2.1s; }

@media (max-width: 960px) {
    .mk-radio-cobertura__inner { grid-template-columns: 1fr; gap: 40px; }
    .mk-radio-cobertura__map { order: -1; }
    .mk-radio-cobertura__map-visual { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 480px) {
    .mk-radio-cobertura__list { grid-template-columns: 1fr; }
}

/* ---- Radio: Grilla de programación ---- */
.mk-radio-grilla {
    padding: 120px 0;
    background: #fff;
}
.mk-radio-grilla__header {
    text-align: center;
    margin-bottom: 60px;
}
.mk-radio-grilla__tag {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.mk-radio-grilla__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #111;
    margin: 0;
}
.mk-radio-grilla__table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-primary);
}
.mk-radio-grilla__table thead {
    background: var(--red);
}
.mk-radio-grilla__table thead th {
    padding: 18px 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}
.mk-radio-grilla__table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}
.mk-radio-grilla__table tbody tr:hover {
    background: rgba(211,64,61,0.03);
}
.mk-radio-grilla__table tbody td {
    padding: 20px 24px;
    font-size: 15px;
    color: #333;
}
.mk-radio-grilla__table tbody td:first-child {
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}
.mk-radio-grilla__table tbody td:nth-child(2) {
    font-weight: 600;
}
.mk-radio-grilla__table tbody td:last-child {
    font-weight: 600;
    color: var(--red);
}
@media (max-width: 768px) {
    .mk-radio-grilla__table { font-size: 13px; }
    .mk-radio-grilla__table thead th,
    .mk-radio-grilla__table tbody td { padding: 14px 12px; }
}

/* ---- Radio: Formatos publicitarios ---- */
.mk-radio-formatos {
    padding: 120px 0;
    background: #f8f8f8;
}
.mk-radio-formatos__header {
    text-align: center;
    margin-bottom: 70px;
}
.mk-radio-formatos__tag {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.mk-radio-formatos__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #111;
    margin: 0;
}
.mk-radio-formatos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mk-radio-formato {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-radio-formato::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #ff686a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.mk-radio-formato:hover::before { transform: scaleX(1); }
.mk-radio-formato:hover {
    border-color: rgba(211,64,61,0.15);
    box-shadow: 0 24px 64px rgba(0,0,0,0.08);
    transform: translateY(-8px);
}
.mk-radio-formato__num {
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 900;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    margin-bottom: 16px;
}
.mk-radio-formato__icon {
    width: 52px;
    height: 52px;
    background: rgba(211,64,61,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--red);
    transition: all 0.3s;
}
.mk-radio-formato:hover .mk-radio-formato__icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.1);
}
.mk-radio-formato h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px;
}
.mk-radio-formato p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 960px) {
    .mk-radio-formatos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .mk-radio-formatos__grid { grid-template-columns: 1fr; }
}

/* ---- Radio: CTA ---- */
.mk-radio-cta {
    padding: 120px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}
.mk-radio-cta__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(211,64,61,0.12) 0%, transparent 70%);
}
.mk-radio-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.mk-radio-cta__title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.1;
}
.mk-radio-cta__desc {
    font-size: 19px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    line-height: 1.7;
}
.mk-radio-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
