/* ====================================================
   MEDIA KIT — Digital San Luis
   Inspired by La Nación Audiencias Influyentes
   ==================================================== */

/* ---- MK HEADER (replaces main site header) ---- */
.mk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #111;
    border-bottom: 3px solid var(--red);
}
.mk-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.mk-header__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}
.mk-header__logo img { height: 36px; width: auto; }
.mk-header__badge {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 14px;
}
.mk-header__nav {
    display: flex;
    gap: 0;
}
.mk-header__link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 20px 16px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}
.mk-header__link:hover { color: var(--red); }
.mk-header__link.active {
    color: var(--red);
}
.mk-header__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--red);
}
.mk-header__menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.mk-header__menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Mobile nav for MK */
.mk-mobile-nav {
    position: fixed;
    top: 0; right: -300px;
    width: 300px;
    height: 100vh;
    background: #111;
    z-index: 1000;
    transition: right 0.35s ease;
    overflow-y: auto;
}
.mk-mobile-nav.open { right: 0; }
.mk-mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mk-mobile-nav__close {
    background: none; border: none; color: #fff;
    font-size: 28px; cursor: pointer;
}
.mk-mobile-nav__list {
    list-style: none; padding: 10px 0; margin: 0;
}
.mk-mobile-nav__list li a {
    display: block; padding: 14px 24px;
    color: #fff; text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500; font-size: 15px;
    transition: background 0.2s;
}
.mk-mobile-nav__list li a:hover,
.mk-mobile-nav__list li a.active { background: rgba(211,64,61,0.15); color: var(--red); }
.mk-mobile-nav__divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 8px 0; }
.mk-mobile-nav__overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 999; opacity: 0; pointer-events: none;
    transition: opacity 0.35s;
}
.mk-mobile-nav__overlay.open { opacity: 1; pointer-events: all; }

@media (max-width: 960px) {
    .mk-header__nav { display: none; }
    .mk-header__menu { display: flex; }
    .mk-header__badge { display: none; }
}

/* ---- HERO DIGITAL ---- */
.mk-hero-digital {
    position: relative;
    min-height: 70vh;
    background: #000;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.mk-hero-digital__bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mk-hero-digital__content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}
.mk-hero-digital__title {
    font-family: var(--font-primary);
    font-size: clamp(64px, 12vw, 160px);
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    margin: 0;
}
.mk-hero-digital__subtitle {
    font-family: var(--font-primary);
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Phone mockup */
.mk-phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 36px;
    border: 3px solid #333;
    padding: 12px;
    position: relative;
    transform: rotate(-5deg) translateY(40px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.mk-phone-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
}
.mk-phone-mockup__screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #740607, #d3403d);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mk-phone-mockup__content {
    text-align: center;
    padding: 20px;
}
.mk-phone-mockup__live {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.mk-phone-mockup__bars {
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: flex-end;
    height: 40px;
}
.mk-phone-mockup__bars span {
    display: block;
    width: 4px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: mkWave 1.2s ease-in-out infinite;
}
.mk-phone-mockup__bars span:nth-child(1) { height: 12px; animation-delay: 0s; }
.mk-phone-mockup__bars span:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.mk-phone-mockup__bars span:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.mk-phone-mockup__bars span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.mk-phone-mockup__bars span:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.mk-phone-mockup__bars span:nth-child(6) { height: 16px; animation-delay: 0.5s; }
.mk-phone-mockup__bars span:nth-child(7) { height: 28px; animation-delay: 0.6s; }
.mk-phone-mockup__bars span:nth-child(8) { height: 10px; animation-delay: 0.7s; }
.mk-phone-mockup__bars span:nth-child(9) { height: 22px; animation-delay: 0.8s; }
.mk-phone-mockup__bars span:nth-child(10) { height: 18px; animation-delay: 0.9s; }

@keyframes mkWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

@media (max-width: 768px) {
    .mk-hero-digital { min-height: 50vh; }
    .mk-phone-mockup { width: 180px; height: 360px; opacity: 0.3; }
}

/* ---- PROPUESTA DE VALOR ---- */
.mk-propuesta {
    padding: 120px 0 80px;
}
.mk-propuesta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.mk-propuesta__title {
    font-family: var(--font-secondary);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    margin: 0;
}
.mk-propuesta__line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-bottom: 24px;
}
.mk-propuesta__text p {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}
@media (max-width: 768px) {
    .mk-propuesta { padding: 80px 0 60px; }
    .mk-propuesta__grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---- STATS WEB ---- */
.mk-stats-web {
    padding: 60px 0 100px;
}
.mk-stats-web__grid,
.mk-stats-web__row2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.mk-stat-big {
    text-align: left;
}
.mk-stat-big__number {
    font-family: var(--font-primary);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    color: #111;
    line-height: 1;
}
.mk-stat-big__suffix {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #111;
}
.mk-stat-big__label {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    line-height: 1.5;
}
.mk-stat-big__label small {
    font-size: 12px;
    color: #888;
}
@media (max-width: 768px) {
    .mk-stats-web__grid,
    .mk-stats-web__row2 { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 480px) {
    .mk-stats-web__grid,
    .mk-stats-web__row2 { grid-template-columns: 1fr; }
}

/* ---- SOCIAL MEDIA STACKED CARDS ---- */
.mk-social-stack {
    padding: 80px 0 120px;
    background: #fafafa;
}

/* Platform selector icons */
.mk-platform-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}
.mk-platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}
.mk-platform-icon:hover { border-color: #999; color: #333; transform: scale(1.1); }
.mk-platform-icon.active { border-color: #111; color: #111; transform: scale(1.15); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* Cards viewport and stack */
.mk-cards-viewport {
    position: relative;
    min-height: 500px;
    perspective: 1200px;
}
.mk-cards-stack {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    min-height: 480px;
}

/* Individual card */
.mk-social-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 90%;
    max-width: 700px;
    transform: translateX(-50%);
    border-radius: 24px;
    padding: 4px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Card colors */
.mk-social-card--facebook { background: linear-gradient(135deg, #1877F2, #4A90D9); }
.mk-social-card--instagram { background: linear-gradient(135deg, #E4405F, #FD1D1D, #F77737); }
.mk-social-card--youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }
.mk-social-card--tiktok { background: linear-gradient(135deg, #010101, #25F4EE, #FE2C55); }

.mk-social-card__inner {
    background: inherit;
    border-radius: 20px;
    padding: 50px 60px;
    color: #fff;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mk-social-card__platform {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin: 0 0 40px 0;
}

.mk-social-card__stats {
    display: flex;
    gap: 60px;
    margin-bottom: 32px;
}
.mk-social-card__stat p {
    font-size: 16px;
    opacity: 0.85;
    margin-top: 4px;
}
.mk-social-card__num {
    font-family: var(--font-primary);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    line-height: 1;
}
.mk-social-card__unit {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
}

.mk-social-card__demographics,
.mk-social-card__extra {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.mk-social-card__gender {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.mk-social-card__source {
    font-size: 13px;
    opacity: 0.6;
    margin-top: auto;
}

/* Stacking positions */
.mk-social-card {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateX(60px) scale(0.92);
}
.mk-social-card.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateX(0) scale(1);
    z-index: 4;
}
.mk-social-card.behind-1 {
    opacity: 0.7;
    pointer-events: none;
    transform: translateX(-50%) translateX(40px) scale(0.95);
    z-index: 3;
    filter: brightness(0.85);
}
.mk-social-card.behind-2 {
    opacity: 0.5;
    pointer-events: none;
    transform: translateX(-50%) translateX(80px) scale(0.90);
    z-index: 2;
    filter: brightness(0.7);
}
.mk-social-card.behind-3 {
    opacity: 0.3;
    pointer-events: none;
    transform: translateX(-50%) translateX(120px) scale(0.85);
    z-index: 1;
    filter: brightness(0.55);
}

@media (max-width: 768px) {
    .mk-social-card { width: 95%; }
    .mk-social-card__inner { padding: 30px 28px; min-height: 350px; }
    .mk-social-card__stats { flex-direction: column; gap: 20px; }
    .mk-social-card.behind-1 { transform: translateX(-50%) translateX(20px) scale(0.95); }
    .mk-social-card.behind-2 { transform: translateX(-50%) translateX(40px) scale(0.90); }
    .mk-social-card.behind-3 { transform: translateX(-50%) translateX(60px) scale(0.85); }
    .mk-cards-viewport { min-height: 420px; }
}

/* ---- FORMATOS PUBLICITARIOS ---- */
.mk-formatos {
    padding: 100px 0;
    background: #fff;
}
.mk-formatos__title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #111;
    text-align: center;
    margin-bottom: 60px;
}
.mk-formatos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mk-formato-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}
.mk-formato-card:hover {
    border-color: var(--red);
    box-shadow: 0 12px 40px rgba(211,64,61,0.1);
    transform: translateY(-4px);
}
.mk-formato-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(211,64,61,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--red);
}
.mk-formato-card h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
}
.mk-formato-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .mk-formatos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .mk-formatos__grid { grid-template-columns: 1fr; }
}

/* ---- CTA ---- */
.mk-cta-section {
    padding: 80px 0 100px;
    background: #000;
}
.mk-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.mk-cta-box h2 {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}
.mk-cta-box p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}
.mk-cta-box__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn--outline-white {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    background: transparent;
    padding: 12px 32px;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}
.btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Hide default site header on media kit page */
body:has(.mk-header) > .header,
body:has(.mk-header) > .top-bar + .header { display: none; }


/* =============================================
   HUB PAGE — Overview / Landing
   ============================================= */

/* ---- Hub Hero (immersive) ---- */
.mk-hub-hero {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.mk-hub-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.mk-hub-hero__particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.3;
    animation: mkParticleFloat 8s ease-in-out infinite;
}
.mk-hub-hero__particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.mk-hub-hero__particles span:nth-child(2) { top: 25%; right: 15%; animation-delay: 1s; width: 4px; height: 4px; }
.mk-hub-hero__particles span:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; width: 8px; height: 8px; }
.mk-hub-hero__particles span:nth-child(4) { top: 60%; right: 25%; animation-delay: 3s; }
.mk-hub-hero__particles span:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; width: 3px; height: 3px; }
.mk-hub-hero__particles span:nth-child(6) { bottom: 20%; right: 10%; animation-delay: 5s; width: 5px; height: 5px; }
.mk-hub-hero__particles span:nth-child(7) { top: 10%; left: 60%; animation-delay: 6s; }
.mk-hub-hero__particles span:nth-child(8) { bottom: 40%; left: 35%; animation-delay: 7s; width: 4px; height: 4px; }

@keyframes mkParticleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(15px); opacity: 0.6; }
    50% { transform: translateY(-10px) translateX(-10px); opacity: 0.2; }
    75% { transform: translateY(-40px) translateX(20px); opacity: 0.5; }
}

.mk-hub-hero__content {
    position: relative;
    z-index: 2;
}
.mk-hub-hero__logo {
    margin-bottom: 24px;
    opacity: 0.9;
}
.mk-hub-hero__kicker {
    font-family: var(--font-primary);
    font-size: clamp(11px, 1.5vw, 15px);
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.mk-hub-hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(211,64,61,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(211,64,61,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.mk-hub-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(60px, 14vw, 160px);
    font-weight: 900;
    line-height: 0.85;
    margin: 0;
    color: #fff;
}
/* Letter-joining animation */
.mk-hub-hero__title--animated {
    background: none;
}
.mk-hub-hero__title--animated .mk-letter {
    display: inline-block;
    opacity: 0;
    color: #fff;
    animation: mkLetterJoin 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: calc(0.6s + var(--i) * 0.1s);
}
@keyframes mkLetterJoin {
    0% {
        opacity: 0;
        transform: translateY(-80px) translateX(calc((var(--i) - 3.5) * 40px)) scale(1.4) rotate(calc((var(--i) - 3.5) * 8deg));
        filter: blur(8px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    80% {
        transform: translateY(4px) translateX(0) scale(1.02) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}
.mk-hub-hero__logo {
    opacity: 0;
    animation: mkFadeIn 1s ease forwards 0.2s;
    display: block;
    margin: 0 auto;
}
.mk-hub-hero__kicker {
    opacity: 0;
    animation: mkFadeIn 1s ease forwards 0.4s;
}
.mk-hub-hero__desc {
    opacity: 0;
    animation: mkFadeIn 1s ease forwards 1.8s;
}
.mk-hub-hero__scroll {
    opacity: 0;
    animation: mkFadeIn 1s ease forwards 2.2s;
}
@keyframes mkFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.mk-hub-hero__desc {
    font-size: clamp(15px, 2vw, 20px);
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 24px auto 0;
    line-height: 1.6;
}
.mk-hub-hero__scroll {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
/* Override opacity for scroll children (set by animation) */
.mk-hub-hero__scroll span {
    font-family: var(--font-primary);
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.35);
}
.mk-hub-hero__arrow {
    animation: mkBounce 2s ease-in-out infinite;
    color: rgba(255,255,255,0.35);
}
@keyframes mkBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ---- Hub Numbers ---- */
.mk-hub-numbers {
    padding: 100px 0;
    background: #fff;
}
.mk-hub-numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.mk-hub-num__value {
    font-family: var(--font-primary);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    color: #111;
    line-height: 1;
}
.mk-hub-num__suffix {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #111;
}
.mk-hub-num p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .mk-hub-numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .mk-hub-numbers { padding: 60px 0; }
}

/* ---- Hub Quote ---- */
.mk-hub-quote {
    padding: 80px 0;
    background: #0a0a0a;
}
.mk-hub-quote blockquote {
    font-family: var(--font-secondary);
    font-size: clamp(24px, 4vw, 44px);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    border: none;
}

/* ---- Hub Sections (Platform overview cards) ---- */
.mk-hub-sections {
    padding: 100px 0;
    background: #fff;
}
.mk-hub-section {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid #e8e8e8;
    align-items: start;
}
.mk-hub-section:last-child { border-bottom: none; }

.mk-hub-section__number {
    font-family: var(--font-primary);
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 900;
    color: rgba(0,0,0,0.06);
    line-height: 1;
}
.mk-hub-section__tag {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.mk-hub-section__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #111;
    margin: 0 0 16px;
    line-height: 1.1;
}
.mk-hub-section__desc {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 20px;
}
.mk-hub-section__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.mk-hub-section__highlights span {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: #333;
    background: #f4f4f4;
    padding: 6px 16px;
    border-radius: 20px;
}
.mk-hub-section__cta {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}
.mk-hub-section__cta:hover {
    border-bottom-color: var(--red);
}

@media (max-width: 768px) {
    .mk-hub-section { grid-template-columns: 1fr; gap: 10px; padding: 40px 0; }
    .mk-hub-section__number { font-size: 48px; }
}

/* ---- Hub Clients ---- */
.mk-hub-clients {
    padding: 80px 0;
    background: #fafafa;
}
.mk-hub-clients__title {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    color: #999;
    margin-bottom: 40px;
}
.mk-hub-clients__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.mk-hub-client {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: #bbb;
    transition: all 0.3s;
}
.mk-hub-client:hover {
    border-color: #ddd;
    color: #888;
    transform: translateY(-2px);
}
@media (max-width: 480px) {
    .mk-hub-clients__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Sphere Metrics Section ---- */
.mk-sphere-section {
    position: relative;
    padding: 120px 0;
    background: #080808;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}
.mk-sphere-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.mk-sphere-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 500px;
    align-items: center;
}
.mk-sphere-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211,64,61,0.3), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    animation: mkSphereGlow 4s ease-in-out infinite alternate;
}
@keyframes mkSphereGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}
.mk-sphere-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.4s;
}
.mk-sphere-card::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(211,64,61,0.5), transparent);
}
.mk-sphere-card--tl { justify-self: end; }
.mk-sphere-card--tl::before { bottom: -1px; right: -60px; }
.mk-sphere-card--tr { justify-self: start; }
.mk-sphere-card--tr::before { bottom: -1px; left: -60px; background: linear-gradient(270deg, rgba(211,64,61,0.5), transparent); }
.mk-sphere-card--bl { justify-self: end; }
.mk-sphere-card--bl::before { top: -1px; right: -60px; }
.mk-sphere-card--br { justify-self: start; }
.mk-sphere-card--br::before { top: -1px; left: -60px; background: linear-gradient(270deg, rgba(211,64,61,0.5), transparent); }
.mk-sphere-card:hover {
    border-color: rgba(211,64,61,0.3);
    background: rgba(211,64,61,0.04);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(211,64,61,0.08);
}
.mk-sphere-card__label {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d3403d;
    display: block;
    margin-bottom: 8px;
}
.mk-sphere-card__value {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
}
.mk-sphere-card p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 768px) {
    .mk-sphere-section { padding: 80px 0; min-height: auto; }
    .mk-sphere-content { grid-template-columns: 1fr; gap: 16px; min-height: auto; }
    .mk-sphere-card { justify-self: stretch !important; }
    .mk-sphere-card::before { display: none; }
    .mk-sphere-center { width: 120px; height: 120px; }
}

/* ---- Process Section ---- */
.mk-process-section {
    padding: 100px 0;
    background: #0a0a0a;
}
.mk-process__heading {
    font-family: var(--font-primary);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 60px;
    line-height: 1.1;
}
.mk-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mk-process-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
}
.mk-process-card:hover {
    border-color: rgba(211,64,61,0.2);
    transform: translateY(-4px);
}
.mk-process-card__visual {
    padding: 28px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.015);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mk-process-card__icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    opacity: 0.7;
}
.mk-process-card__code {
    width: 100%;
}
.mk-process-card__code-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}
.mk-process-card__code-tabs span {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    padding: 6px 14px;
    border-radius: 6px;
}
.mk-process-card__tab--active {
    background: rgba(211,64,61,0.15) !important;
    color: #d3403d !important;
}
.mk-process-card__code-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mk-process-card__code-lines span {
    height: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
}
.mk-process-card__code-lines span:nth-child(1) { width: 80%; }
.mk-process-card__code-lines span:nth-child(2) { width: 60%; }
.mk-process-card__code-lines span:nth-child(3) { width: 90%; }
.mk-process-card__code-lines span:nth-child(4) { width: 45%; }
.mk-process-card__metrics {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mk-process-card__metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mk-process-card__metric-row span {
    font-family: var(--font-primary);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.mk-metric--up {
    color: #4ade80 !important;
    font-weight: 700 !important;
}
.mk-metric--down {
    color: #d3403d !important;
    font-weight: 700 !important;
}
.mk-metric--btn {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #d3403d !important;
    background: rgba(211,64,61,0.1);
    padding: 3px 12px;
    border-radius: 6px;
}
.mk-process-card__body {
    padding: 28px;
}
.mk-process-card__step {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    display: block;
    margin-bottom: 6px;
}
.mk-process-card__body h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.mk-process-card__body p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .mk-process__grid { grid-template-columns: 1fr; }
    .mk-process-section { padding: 60px 0; }
}

/* ---- Logo Carousel ---- */
.mk-logos-section {
    padding: 70px 0 50px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}
.mk-logos__kicker {
    font-family: var(--font-primary);
    font-size: clamp(16px, 2.5vw, 22px);
    font-style: italic;
    color: #999;
    margin: 0 0 4px;
}
.mk-logos__title {
    font-family: var(--font-primary);
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 900;
    color: #111;
    margin: 0 0 48px;
}
.mk-logos-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.mk-logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: mkLogoScroll 30s linear infinite;
}
.mk-logos-track img {
    height: 64px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
    flex-shrink: 0;
}
.mk-logos-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
@keyframes mkLogoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   REDES PAGE — HIGH IMPACT REDESIGN
   ============================================= */

/* ---- Redes Hero: Full-screen cinematic ---- */
.mk-redes-hero {
    position: relative;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.mk-redes-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(211,64,61,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(211,64,61,0.08) 0%, transparent 40%);
    pointer-events: none;
}
.mk-redes-hero__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.mk-redes-hero__lines span {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(211,64,61,0.12), transparent);
    animation: mkLineMove 4s ease-in-out infinite;
}
.mk-redes-hero__lines span:nth-child(1) { left: 15%; animation-delay: 0s; }
.mk-redes-hero__lines span:nth-child(2) { left: 35%; animation-delay: 1s; }
.mk-redes-hero__lines span:nth-child(3) { left: 55%; animation-delay: 2s; }
.mk-redes-hero__lines span:nth-child(4) { left: 75%; animation-delay: 3s; }
.mk-redes-hero__lines span:nth-child(5) { left: 90%; animation-delay: 0.5s; }
@keyframes mkLineMove {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-30px); }
}
.mk-redes-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mk-redes-hero__text {
    padding: 40px 0;
}
.mk-redes-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(211,64,61,0.15);
    border: 1px solid rgba(211,64,61,0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    animation: mkSlideUp 0.8s ease forwards 0.3s;
}
.mk-redes-hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: mkPulse 2s ease-in-out infinite;
}
@keyframes mkPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.mk-redes-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    margin: 0 0 16px;
    opacity: 0;
    animation: mkSlideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.5s;
}
.mk-redes-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-redes-hero__sub {
    font-family: var(--font-primary);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin: 0;
    opacity: 0;
    animation: mkSlideUp 1s ease forwards 0.7s;
}
@keyframes mkSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.mk-redes-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}
.mk-redes-hero__orbit {
    position: relative;
    width: 360px;
    height: 360px;
    opacity: 0;
    animation: mkSlideUp 1.2s ease forwards 0.8s;
}
.mk-redes-hero__orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(211,64,61,0.15);
    border-radius: 50%;
    animation: mkOrbitSpin 20s linear infinite;
}
.mk-redes-hero__orbit-ring:nth-child(2) {
    inset: 40px;
    border-color: rgba(211,64,61,0.1);
    animation-duration: 25s;
    animation-direction: reverse;
}
.mk-redes-hero__orbit-ring:nth-child(3) {
    inset: 80px;
    border-color: rgba(211,64,61,0.06);
    animation-duration: 30s;
}
@keyframes mkOrbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.mk-redes-hero__orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d3403d, #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(211,64,61,0.4), 0 0 120px rgba(211,64,61,0.15);
}
.mk-redes-hero__orbit-center img {
    width: 60px;
    height: auto;
    filter: brightness(10);
}
.mk-redes-hero__orbit-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(20,20,20,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(10px);
    animation: mkIconFloat 3s ease-in-out infinite;
}
.mk-redes-hero__orbit-icon:nth-child(5) { top: -10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; color: #1877F2; }
.mk-redes-hero__orbit-icon:nth-child(6) { top: 50%; right: -10px; transform: translateY(-50%); animation-delay: 0.5s; color: #E4405F; }
.mk-redes-hero__orbit-icon:nth-child(7) { bottom: -10px; left: 50%; transform: translateX(-50%); animation-delay: 1s; color: #FF0000; }
.mk-redes-hero__orbit-icon:nth-child(8) { top: 50%; left: -10px; transform: translateY(-50%); animation-delay: 1.5s; color: #25F4EE; }
@keyframes mkIconFloat {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(255,255,255,0.1)); }
    50% { filter: drop-shadow(0 0 20px rgba(211,64,61,0.3)); transform: translateX(-50%) scale(1.1); }
}
.mk-redes-hero__orbit-icon:nth-child(6):hover,
.mk-redes-hero__orbit-icon:nth-child(8):hover { transform: translateY(-50%) scale(1.15); }

@media (max-width: 960px) {
    .mk-redes-hero__content { grid-template-columns: 1fr; text-align: center; }
    .mk-redes-hero__visual { min-height: 350px; }
    .mk-redes-hero__orbit { width: 280px; height: 280px; }
    .mk-redes-hero__orbit-center { width: 90px; height: 90px; }
}
@media (max-width: 600px) {
    .mk-redes-hero { min-height: 80vh; }
    .mk-redes-hero__visual { display: none; }
}

/* ---- Redes: Marquee stat bar ---- */
.mk-redes-marquee {
    background: var(--red);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}
.mk-redes-marquee__track {
    display: flex;
    gap: 60px;
    animation: mkMarquee 20s linear infinite;
    width: max-content;
}
.mk-redes-marquee__item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-family: var(--font-primary);
    color: #fff;
}
.mk-redes-marquee__item strong {
    font-size: 22px;
    font-weight: 900;
}
.mk-redes-marquee__item span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
}
.mk-redes-marquee__item::after {
    content: '\2022';
    margin-left: 48px;
    opacity: 0.4;
}
@keyframes mkMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- Redes: Propuesta V2 ---- */
.mk-redes-propuesta {
    padding: 140px 0 100px;
    background: #fff;
    position: relative;
}
.mk-redes-propuesta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.mk-redes-propuesta__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-redes-propuesta__title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: #111;
    line-height: 1.05;
    margin: 0 0 24px;
}
.mk-redes-propuesta__text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}
.mk-redes-propuesta__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.mk-redes-feature {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}
.mk-redes-feature:hover {
    background: #fff;
    border-color: rgba(211,64,61,0.2);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.mk-redes-feature__icon {
    width: 48px;
    height: 48px;
    background: rgba(211,64,61,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--red);
}
.mk-redes-feature h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
}
.mk-redes-feature p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 960px) {
    .mk-redes-propuesta__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
    .mk-redes-propuesta__features { grid-template-columns: 1fr; }
}

/* ---- Redes: Stats with animated bars ---- */
.mk-redes-stats {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}
.mk-redes-stats__header {
    text-align: center;
    margin-bottom: 80px;
}
.mk-redes-stats__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-redes-stats__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.mk-redes-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.mk-redes-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.mk-redes-stat:hover {
    background: rgba(211,64,61,0.06);
    border-color: rgba(211,64,61,0.2);
}
.mk-redes-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.6s ease;
}
.mk-redes-stat:hover::before {
    width: 100%;
}
.mk-redes-stat__number {
    font-family: var(--font-primary);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.mk-redes-stat__suffix {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
}
.mk-redes-stat__label {
    font-family: var(--font-primary);
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    line-height: 1.5;
}
.mk-redes-stat__label small {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-top: 4px;
}
@media (max-width: 768px) {
    .mk-redes-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .mk-redes-stats__grid { grid-template-columns: 1fr; }
    .mk-redes-stat { padding: 32px 24px; }
}

/* ---- Redes: Social cards V2 (3D flip on scroll) ---- */
.mk-redes-social {
    padding: 120px 0;
    background: #fff;
    position: relative;
}
.mk-redes-social__header {
    text-align: center;
    margin-bottom: 80px;
}
.mk-redes-social__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-redes-social__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #111;
    margin: 0;
}

/* Platform selector V2 */
.mk-redes-platforms {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}
.mk-redes-platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #666;
}
.mk-redes-platform-btn svg { width: 22px; height: 22px; }
.mk-redes-platform-btn:hover { border-color: #999; color: #333; transform: translateY(-2px); }
.mk-redes-platform-btn.active {
    background: #111;
    border-color: #111;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .mk-redes-platforms { flex-wrap: wrap; }
    .mk-redes-platform-btn span { display: none; }
    .mk-redes-platform-btn { padding: 12px 20px; }
}

/* Card display area */
.mk-redes-card-display {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 480px;
    perspective: 1500px;
}

/* Individual social cards V2 */
.mk-redes-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 28px;
    overflow: hidden;
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.mk-redes-card.active {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    pointer-events: all;
    position: relative;
}
.mk-redes-card__inner {
    padding: 56px 64px;
    color: #fff;
    min-height: 440px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.mk-redes-card--facebook .mk-redes-card__inner { background: linear-gradient(135deg, #0b5fbd, #1877F2, #4a90d9); }
.mk-redes-card--instagram .mk-redes-card__inner { background: linear-gradient(135deg, #833AB4, #E4405F, #FD1D1D, #F77737); }
.mk-redes-card--youtube .mk-redes-card__inner { background: linear-gradient(135deg, #8B0000, #FF0000, #CC0000); }
.mk-redes-card--tiktok .mk-redes-card__inner { background: linear-gradient(135deg, #010101, #1a1a2e, #25F4EE); }

.mk-redes-card__platform {
    font-family: var(--font-primary);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    margin: 0 0 8px;
}
.mk-redes-card__handle {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 32px;
}
.mk-redes-card__metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mk-redes-card__metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.mk-redes-card__metric-num {
    font-family: var(--font-primary);
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 900;
    line-height: 1;
}
.mk-redes-card__metric-unit {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
}
.mk-redes-card__metric-label {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 4px;
}
.mk-redes-card__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mk-redes-card__bar-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mk-redes-card__bar-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
}
.mk-redes-card__bar {
    height: 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
}
.mk-redes-card__bar-fill {
    height: 100%;
    background: rgba(255,255,255,0.8);
    border-radius: 4px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-redes-card.active .mk-redes-card__bar-fill {
    width: var(--fill);
}
.mk-redes-card__source {
    font-size: 12px;
    opacity: 0.4;
    margin-top: auto;
    padding-top: 16px;
}
@media (max-width: 768px) {
    .mk-redes-card__inner { grid-template-columns: 1fr; padding: 36px 28px; min-height: auto; }
    .mk-redes-card-display { min-height: auto; }
}

/* ---- Redes: Formatos V2 (glassmorphism grid) ---- */
.mk-redes-formatos {
    padding: 120px 0;
    background: linear-gradient(180deg, #fafafa, #fff);
}
.mk-redes-formatos__header {
    text-align: center;
    margin-bottom: 70px;
}
.mk-redes-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-redes-formatos__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #111;
    margin: 0;
}
.mk-redes-formatos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mk-redes-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-redes-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-redes-formato:hover::before {
    transform: scaleX(1);
}
.mk-redes-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-redes-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-redes-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-redes-formato:hover .mk-redes-formato__icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.1);
}
.mk-redes-formato h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px;
}
.mk-redes-formato p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 960px) {
    .mk-redes-formatos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .mk-redes-formatos__grid { grid-template-columns: 1fr; }
}

/* ---- Redes: CTA V2 ---- */
.mk-redes-cta {
    padding: 120px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}
.mk-redes-cta__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(211,64,61,0.12) 0%, transparent 70%);
}
.mk-redes-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.mk-redes-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-redes-cta__desc {
    font-size: 19px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    line-height: 1.7;
}
.mk-redes-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.mk-redes-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}
.mk-redes-cta__btn--primary {
    background: var(--red);
    color: #fff;
    border: none;
}
.mk-redes-cta__btn--primary:hover {
    background: #ff4444;
    box-shadow: 0 8px 32px rgba(211,64,61,0.4);
    transform: translateY(-2px);
}
.mk-redes-cta__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.mk-redes-cta__btn--outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

/* =============================================
   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: hidden;
}
.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: 380px;
    height: 480px;
}
.mk-radio-cobertura__tower {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mk-radio-cobertura__tower-icon {
    width: 70px;
    height: 70px;
    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 40px rgba(211,64,61,0.4);
}
.mk-radio-cobertura__wave {
    position: absolute;
    top: 50%;
    left: 50%;
    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); }
}
/* 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: -24px;
    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;
}
@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); }
}
/* Position the 8 cities around the tower */
.mk-radio-cobertura__dot:nth-child(6) { top: 8%; left: 55%; animation-delay: 0s; }
.mk-radio-cobertura__dot:nth-child(7) { top: 22%; left: 30%; animation-delay: 0.3s; }
.mk-radio-cobertura__dot:nth-child(8) { top: 35%; right: 15%; animation-delay: 0.6s; }
.mk-radio-cobertura__dot:nth-child(9) { top: 48%; left: 18%; animation-delay: 0.9s; }
.mk-radio-cobertura__dot:nth-child(10) { top: 62%; right: 22%; animation-delay: 1.2s; }
.mk-radio-cobertura__dot:nth-child(11) { top: 72%; left: 25%; animation-delay: 1.5s; }
.mk-radio-cobertura__dot:nth-child(12) { top: 82%; right: 30%; animation-delay: 1.8s; }
.mk-radio-cobertura__dot:nth-child(13) { bottom: 5%; left: 45%; 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 { width: 300px; height: 380px; 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;
}

/* ---------- MK BUTTONS (shared across pages) ---------- */
.mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    border-radius: 50px;
    padding: 16px 40px;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.mk-btn--primary {
    background: #E50914;
    color: #fff;
    border: 2px solid #E50914;
}
.mk-btn--primary:hover {
    background: #c30812;
    border-color: #c30812;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(229,9,20,.3);
}
.mk-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
}
.mk-btn--outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    transform: translateY(-2px);
}
