/* =============================================
   STREAMING PAGE — HIGH IMPACT
   ============================================= */

/* ---- Streaming Hero ---- */
.mk-stream-hero {
    position: relative;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mk-stream-hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}
.mk-stream-hero__glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(211,64,61,0.15) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mkStreamGlow 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes mkStreamGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}
.mk-stream-hero__content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
/* LIVE badge */
.mk-stream-hero__live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(211,64,61,0.15);
    border: 1px solid rgba(211,64,61,0.3);
    padding: 10px 28px;
    border-radius: 40px;
    margin-bottom: 36px;
    opacity: 0;
    animation: mkSlideUp 0.8s ease forwards 0.3s;
}
.mk-stream-hero__live-dot {
    width: 10px;
    height: 10px;
    background: #e53935;
    border-radius: 50%;
    animation: mkLivePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(229,57,53,0.6);
}
@keyframes mkLivePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.mk-stream-hero__live-text {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #e53935;
    text-transform: uppercase;
}
/* Title */
.mk-stream-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(48px, 9vw, 120px);
    font-weight: 900;
    color: #fff;
    line-height: 0.92;
    margin: 0 0 20px;
    opacity: 0;
    animation: mkSlideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.5s;
}
.mk-stream-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-stream-hero__sub {
    font-family: var(--font-primary);
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    margin: 0 0 48px;
    opacity: 0;
    animation: mkSlideUp 1s ease forwards 0.7s;
}
/* Screen frame */
.mk-stream-hero__screen {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.08),
        0 0 60px rgba(211,64,61,0.15),
        0 40px 80px rgba(0,0,0,0.5);
    opacity: 0;
    animation: mkScreenReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.9s;
}
@keyframes mkScreenReveal {
    0% { opacity: 0; transform: translateY(60px) scale(0.92); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.mk-stream-hero__screen-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 5;
    object-fit: cover;
}
/* Scan lines overlay */
.mk-stream-hero__scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.06) 2px,
        rgba(0,0,0,0.06) 4px
    );
    pointer-events: none;
    z-index: 2;
}
/* Viewer count floating badge */
.mk-stream-hero__viewers {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 8px;
    z-index: 3;
    opacity: 0;
    animation: mkFadeIn 0.6s ease forwards 1.8s;
}
.mk-stream-hero__viewers-dot {
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
    animation: mkLivePulse 1.5s ease-in-out infinite;
}
.mk-stream-hero__viewers-count {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.mk-stream-hero__viewers-label {
    font-family: var(--font-primary);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
/* LIVE tag on screen */
.mk-stream-hero__screen-live {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e53935;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 3;
    opacity: 0;
    animation: mkFadeIn 0.6s ease forwards 1.6s;
}
.mk-stream-hero__screen-live span {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}
.mk-stream-hero__screen-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: mkLivePulse 1.5s ease-in-out infinite;
}
/* Glitch bar effect */
.mk-stream-hero__glitch-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(211,64,61,0.4);
    z-index: 4;
    opacity: 0;
    animation: mkGlitchBar 8s linear infinite 2s;
}
@keyframes mkGlitchBar {
    0%, 100% { opacity: 0; top: 0%; }
    2% { opacity: 0.7; }
    4% { opacity: 0; }
    40% { opacity: 0; top: 30%; }
    42% { opacity: 0.5; }
    44% { opacity: 0; }
    70% { opacity: 0; top: 70%; }
    72% { opacity: 0.4; }
    74% { opacity: 0; }
    98% { top: 100%; }
}
@keyframes mkFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .mk-stream-hero { min-height: 90vh; }
    .mk-stream-hero__screen { border-radius: 12px; }
    .mk-stream-hero__viewers { display: none; }
}

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

/* ---- Streaming: Propuesta de valor ---- */
.mk-stream-propuesta {
    padding: 120px 0;
    background: #fff;
}
.mk-stream-propuesta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.mk-stream-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-stream-propuesta__title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #111;
    line-height: 1.05;
    margin: 0 0 24px;
}
.mk-stream-propuesta__desc {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 36px;
}
.mk-stream-propuesta__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mk-stream-propuesta__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.mk-stream-propuesta__feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(211,64,61,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}
/* Stats side */
.mk-stream-propuesta__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.mk-stream-stat-card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-stream-stat-card::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-stream-stat-card:hover::before { transform: scaleX(1); }
.mk-stream-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.mk-stream-stat-card__number {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}
.mk-stream-stat-card__label {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mk-stream-stat-card--featured {
    grid-column: 1 / -1;
    background: #111;
}
.mk-stream-stat-card--featured .mk-stream-stat-card__number {
    font-size: 52px;
    background: linear-gradient(135deg, #d3403d, #ff686a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mk-stream-stat-card--featured .mk-stream-stat-card__label {
    color: rgba(255,255,255,0.5);
}

@media (max-width: 960px) {
    .mk-stream-propuesta__inner { grid-template-columns: 1fr; gap: 48px; }
    .mk-stream-propuesta__stats { order: -1; }
}
@media (max-width: 480px) {
    .mk-stream-propuesta__stats { grid-template-columns: 1fr; }
    .mk-stream-stat-card--featured { grid-column: auto; }
}

/* ---- Streaming: Ventajas diferenciales ---- */
.mk-stream-ventajas {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}
.mk-stream-ventajas__header {
    text-align: center;
    margin-bottom: 70px;
}
.mk-stream-ventajas__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-stream-ventajas__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.mk-stream-ventajas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mk-stream-ventaja {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-stream-ventaja:hover {
    background: rgba(211,64,61,0.06);
    border-color: rgba(211,64,61,0.2);
    transform: translateY(-8px);
}
.mk-stream-ventaja__icon {
    width: 60px;
    height: 60px;
    background: rgba(211,64,61,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--red);
    transition: all 0.3s;
}
.mk-stream-ventaja:hover .mk-stream-ventaja__icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.1);
}
.mk-stream-ventaja h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}
.mk-stream-ventaja p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 960px) {
    .mk-stream-ventajas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .mk-stream-ventajas__grid { grid-template-columns: 1fr; }
}

/* ---- Streaming: Formatos publicitarios ---- */
.mk-stream-formatos {
    padding: 120px 0;
    background: #fff;
}
.mk-stream-formatos__header {
    text-align: center;
    margin-bottom: 70px;
}
.mk-stream-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-stream-formatos__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #111;
    margin: 0;
}
.mk-stream-formatos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mk-stream-formato {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mk-stream-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-stream-formato:hover::before { transform: scaleX(1); }
.mk-stream-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-stream-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-stream-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-stream-formato:hover .mk-stream-formato__icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.1);
}
.mk-stream-formato h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px;
}
.mk-stream-formato p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 960px) {
    .mk-stream-formatos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .mk-stream-formatos__grid { grid-template-columns: 1fr; }
}

/* ---- Streaming: CTA ---- */
.mk-stream-cta {
    padding: 120px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}
.mk-stream-cta__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(211,64,61,0.12) 0%, transparent 70%);
}
.mk-stream-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.mk-stream-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-stream-cta__desc {
    font-size: 19px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    line-height: 1.7;
}
.mk-stream-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
