/* ==========================================================================
   1. RESET Y PROPIEDADES GLOBALES (PERMITIDO)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #f7f9fb;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    background-color: #f7f9fb;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* ==========================================================================
   2. MEDIA QUERIES (ENCAPSULACIÓN TOTAL - ORDEN DESCENDENTE)
   ========================================================================== */

/* --------------------------------------------------------------------------
   MQ1: Desktop Extra Grande (min-width: 1367px)
   -------------------------------------------------------------------------- */
@media (min-width: 1367px) {
    .seccion-4 {
        width: 100%;
        min-height: 100vh;
        background-color: #f7f9fb;
        color: #213242;
        padding-top: 170px;
        padding-bottom: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Outfit', sans-serif;
    }

    /* MODULO 41: CABECERA DE MARCA */
    .modulo-41 {
        width: 1200px;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        overflow: hidden;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
    }

    .bloque-411 {
        width: 100%;
        height: 280px;
        position: relative;
        overflow: hidden;
        display: flex;
    }

    .contenido-4111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-4112 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    }

    .bloque-412 {
        width: 100%;
        padding: 30px 40px;
        position: relative;
        display: flex;
        align-items: flex-end;
        gap: 30px;
    }

    .contenido-4121 {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 4px solid #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-top: -90px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icono-41211 {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

    .contenido-4122 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-41221 {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .texto-412211 {
        font-size: 28px;
        font-weight: 800;
        color: #213242;
    }

    .texto-412212 {
        background-color: #e6f0ff;
        color: #003cff;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contenido-41222 {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: #555555;
    }

    .contenido-412221 {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .texto-4122211 {
        font-weight: 700;
        color: #213242;
    }

    .texto-4122212 {
        color: #ff9900;
        letter-spacing: 1px;
    }

    .texto-4122213 {
        color: #888888;
    }

    .texto-412222 {
        color: #dddddd;
    }

    .texto-412223 {
        color: #555555;
    }

    .texto-41223 {
        font-size: 14px;
        color: #666666;
        line-height: 1.6;
        margin-top: 5px;
    }

    .contenido-4123 {
        display: flex;
        gap: 12px;
        align-self: center;
    }

    .boton-41231 {
        padding: 10px 24px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 24px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .boton-41231:hover {
        background-color: #002db8;
        transform: translateY(-1px);
    }

    .boton-41231.seguido {
        background-color: #eaeaea;
        color: #555555;
    }

    .boton-41232 {
        padding: 10px 24px;
        background-color: #ffffff;
        color: #213242;
        border: 1px solid #dcdcdc;
        border-radius: 24px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .boton-41232:hover {
        background-color: #f7f9fb;
        border-color: #b5b5b5;
        transform: translateY(-1px);
    }

    /* MODULO 42: PESTAÑAS DE NAVEGACION INTERNA */
    .modulo-42 {
        width: 1200px;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 30px;
        display: flex;
    }

    .bloque-421 {
        display: flex;
        gap: 30px;
    }

    .boton-4211 {
        background: none;
        border: none;
        padding: 15px 5px;
        font-size: 16px;
        font-weight: 600;
        color: #888888;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
    }

    .boton-4211:hover {
        color: #213242;
    }

    .boton-4211.activo {
        color: #003cff;
        font-weight: 700;
    }

    .boton-4211.activo::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #003cff;
        border-radius: 3px 3px 0 0;
    }

    /* MODULO 43: VÍDEO DESTACADO */
    .modulo-43 {
        width: 1200px;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        padding: 40px;
        margin-bottom: 40px;
        display: flex;
    }

    .bloque-431 {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .contenido-4311 {
        width: 320px;
        aspect-ratio: 9 / 16;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        background-color: #000000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex;
    }

    .video-43111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-43112 {
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .contenido-431122 {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #ffffff;
        animation: pulseLive 1.5s infinite;
    }

    .contenido-4312 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .texto-43121 {
        font-size: 12px;
        font-weight: 800;
        color: #003cff;
        letter-spacing: 1px;
    }

    .texto-43122 {
        font-size: 32px;
        font-weight: 800;
        color: #213242;
        line-height: 1.2;
    }

    .texto-43123 {
        font-size: 15px;
        color: #666666;
        line-height: 1.7;
    }

    .boton-43124 {
        padding: 12px 30px;
        background-color: #213242;
        color: #ffffff;
        text-decoration: none;
        border-radius: 24px;
        font-size: 14px;
        font-weight: 700;
        align-self: flex-start;
        transition: all 0.2s ease;
        text-align: center;
    }

    .boton-43124:hover {
        background-color: #0d1721;
        transform: translateY(-1px);
    }

    /* MODULO 44: GRILLA DE PRODUCTOS */
    .modulo-44 {
        width: 1200px;
        margin-bottom: 40px;
        display: flex;
    }

    .bloque-441 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .texto-4411 {
        font-size: 22px;
        font-weight: 800;
        color: #213242;
    }

    .bloque-4412 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        width: 100%;
    }

    .contenido-44121 {
        background-color: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        border: 1px solid #eaeaea;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    .contenido-44121:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    .contenido-441211 {
        width: 100%;
        aspect-ratio: 9 / 16;
        overflow: hidden;
        position: relative;
        background-color: #eaeaea;
        display: flex;
    }

    .video-card-element {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .img-card-fallback {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        transition: transform 0.5s ease;
    }

    .video-play-indicator {
        position: absolute;
        bottom: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
        pointer-events: none;
    }

    .icono-play-svg {
        width: 16px;
        height: 16px;
        fill: #ffffff;
    }

    .badge-descuento-card {
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 11px;
        font-weight: 800;
        padding: 4px 10px;
        border-radius: 4px;
        z-index: 3;
    }

    .contenido-441212 {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
    }

    .texto-4412121 {
        font-size: 14px;
        font-weight: 700;
        color: #213242;
        line-height: 1.4;
        height: 40px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .texto-4412121 a {
        color: #213242;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .texto-4412121 a:hover {
        color: #003cff;
    }

    .contenido-4412122 {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .texto-stars {
        color: #ff9900;
        font-size: 13px;
    }

    .texto-rating-num {
        font-size: 12px;
        color: #888888;
        font-weight: 600;
    }

    .contenido-4412123 {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-top: 5px;
    }

    .texto-precio-ahora {
        font-size: 18px;
        font-weight: 800;
        color: #213242;
    }

    .texto-precio-antes {
        font-size: 13px;
        color: #888888;
        text-decoration: line-through;
    }

    .boton-card-cta {
        margin-top: auto;
        padding: 10px;
        background-color: #f7f9fb;
        color: #213242;
        text-align: center;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        border-radius: 8px;
        border: 1px solid #eaeaea;
        transition: all 0.2s ease;
    }

    .boton-card-cta:hover {
        background-color: #003cff;
        color: #ffffff;
        border-color: #003cff;
    }

    /* MODULO 45: FICHA DE DATOS TECNICOS */
    .modulo-45 {
        width: 1200px;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        padding: 40px;
        margin-bottom: 40px;
        display: flex;
    }

    .bloque-451 {
        width: 100%;
        display: flex;
        gap: 50px;
    }

    .contenido-4511 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .texto-45111 {
        font-size: 20px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45112 {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-451121 {
        display: flex;
        flex-direction: column;
        gap: 4px;
        border-bottom: 1px solid #f7f9fb;
        padding-bottom: 12px;
    }

    .texto-4511211 {
        font-size: 12px;
        font-weight: 700;
        color: #888888;
        text-transform: uppercase;
    }

    .texto-4511212 {
        font-size: 14px;
        font-weight: 600;
        color: #213242;
    }

    .contenido-4512 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .texto-45121 {
        font-size: 20px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45122 {
        width: 100%;
        height: 280px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
        display: flex;
    }

    .mapa-mockup {
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, #e3f2fd 10%, #bbdefb 90%);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mapa-pin {
        width: 20px;
        height: 20px;
        border-radius: 50% 50% 50% 0;
        background: #ff0055;
        position: absolute;
        transform: rotate(-45deg);
        margin-top: -20px;
        animation: bouncePin 2s infinite;
    }

    .mapa-pin::after {
        content: '';
        width: 8px;
        height: 8px;
        margin: 6px 0 0 6px;
        background: #ffffff;
        position: absolute;
        border-radius: 50%;
    }

    .mapa-texto {
        position: absolute;
        bottom: 20px;
        background-color: rgba(33, 50, 66, 0.9);
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
        padding: 6px 16px;
        border-radius: 20px;
    }
}

/* --------------------------------------------------------------------------
   MQ2: Laptop Grande (min-width: 1281px) and (max-width: 1366px)
   -------------------------------------------------------------------------- */
@media (min-width: 1281px) and (max-width: 1366px) {
    .seccion-4 {
        width: 100%;
        min-height: 100vh;
        background-color: #f7f9fb;
        color: #213242;
        padding-top: 160px;
        padding-bottom: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Outfit', sans-serif;
    }

    .modulo-41 {
        width: 1100px;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        overflow: hidden;
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
    }

    .bloque-411 {
        width: 100%;
        height: 250px;
        position: relative;
        overflow: hidden;
        display: flex;
    }

    .contenido-4111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-4112 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    }

    .bloque-412 {
        width: 100%;
        padding: 25px 35px;
        position: relative;
        display: flex;
        align-items: flex-end;
        gap: 25px;
    }

    .contenido-4121 {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 4px solid #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-top: -80px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icono-41211 {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

    .contenido-4122 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .contenido-41221 {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .texto-412211 {
        font-size: 24px;
        font-weight: 800;
        color: #213242;
    }

    .texto-412212 {
        background-color: #e6f0ff;
        color: #003cff;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contenido-41222 {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: #555555;
    }

    .contenido-412221 {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .texto-4122211 {
        font-weight: 700;
        color: #213242;
    }

    .texto-4122212 {
        color: #ff9900;
        letter-spacing: 1px;
    }

    .texto-4122213 {
        color: #888888;
    }

    .texto-412222 {
        color: #dddddd;
    }

    .texto-412223 {
        color: #555555;
    }

    .texto-41223 {
        font-size: 13px;
        color: #666666;
        line-height: 1.5;
        margin-top: 4px;
    }

    .contenido-4123 {
        display: flex;
        gap: 10px;
        align-self: center;
    }

    .boton-41231 {
        padding: 9px 20px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 24px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .boton-41231:hover {
        background-color: #002db8;
    }

    .boton-41231.seguido {
        background-color: #eaeaea;
        color: #555555;
    }

    .boton-41232 {
        padding: 9px 20px;
        background-color: #ffffff;
        color: #213242;
        border: 1px solid #dcdcdc;
        border-radius: 24px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .boton-41232:hover {
        background-color: #f7f9fb;
        border-color: #b5b5b5;
    }

    .modulo-42 {
        width: 1100px;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 25px;
        display: flex;
    }

    .bloque-421 {
        display: flex;
        gap: 25px;
    }

    .boton-4211 {
        background: none;
        border: none;
        padding: 12px 5px;
        font-size: 15px;
        font-weight: 600;
        color: #888888;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
    }

    .boton-4211:hover {
        color: #213242;
    }

    .boton-4211.activo {
        color: #003cff;
        font-weight: 700;
    }

    .boton-4211.activo::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #003cff;
        border-radius: 3px 3px 0 0;
    }

    .modulo-43 {
        width: 1100px;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        padding: 35px;
        margin-bottom: 35px;
        display: flex;
    }

    .bloque-431 {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 35px;
    }

    .contenido-4311 {
        width: 290px;
        aspect-ratio: 9 / 16;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        background-color: #000000;
        display: flex;
    }

    .video-43111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-43112 {
        position: absolute;
        top: 12px;
        left: 12px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 9px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 20px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .contenido-431122 {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #ffffff;
        animation: pulseLive 1.5s infinite;
    }

    .contenido-4312 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .texto-43121 {
        font-size: 11px;
        font-weight: 800;
        color: #003cff;
        letter-spacing: 1px;
    }

    .texto-43122 {
        font-size: 28px;
        font-weight: 800;
        color: #213242;
        line-height: 1.2;
    }

    .texto-43123 {
        font-size: 14px;
        color: #666666;
        line-height: 1.6;
    }

    .boton-43124 {
        padding: 10px 25px;
        background-color: #213242;
        color: #ffffff;
        text-decoration: none;
        border-radius: 24px;
        font-size: 13px;
        font-weight: 700;
        align-self: flex-start;
        transition: all 0.2s ease;
    }

    .boton-43124:hover {
        background-color: #0d1721;
    }

    .modulo-44 {
        width: 1100px;
        margin-bottom: 35px;
        display: flex;
    }

    .bloque-441 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .texto-4411 {
        font-size: 20px;
        font-weight: 800;
        color: #213242;
    }

    .bloque-4412 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        width: 100%;
    }

    .contenido-44121 {
        background-color: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        border: 1px solid #eaeaea;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    .contenido-44121:hover {
        transform: translateY(-4px);
    }

    .contenido-441211 {
        width: 100%;
        aspect-ratio: 9 / 16;
        overflow: hidden;
        position: relative;
        background-color: #eaeaea;
        display: flex;
    }

    .video-card-element {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .img-card-fallback {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .video-play-indicator {
        position: absolute;
        bottom: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
    }

    .icono-play-svg {
        width: 14px;
        height: 14px;
        fill: #ffffff;
    }

    .badge-descuento-card {
        position: absolute;
        top: 12px;
        left: 12px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 10px;
        font-weight: 800;
        padding: 3px 8px;
        border-radius: 4px;
        z-index: 3;
    }

    .contenido-441212 {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
    }

    .texto-4412121 {
        font-size: 13px;
        font-weight: 700;
        color: #213242;
        line-height: 1.4;
        height: 36px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .texto-4412121 a {
        color: #213242;
        text-decoration: none;
    }

    .texto-4412121 a:hover {
        color: #003cff;
    }

    .contenido-4412122 {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .texto-stars {
        color: #ff9900;
        font-size: 12px;
    }

    .texto-rating-num {
        font-size: 11px;
        color: #888888;
        font-weight: 600;
    }

    .contenido-4412123 {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin-top: 4px;
    }

    .texto-precio-ahora {
        font-size: 16px;
        font-weight: 800;
        color: #213242;
    }

    .texto-precio-antes {
        font-size: 12px;
        color: #888888;
        text-decoration: line-through;
    }

    .boton-card-cta {
        margin-top: auto;
        padding: 8px;
        background-color: #f7f9fb;
        color: #213242;
        text-align: center;
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        border-radius: 8px;
        border: 1px solid #eaeaea;
        transition: all 0.2s ease;
    }

    .boton-card-cta:hover {
        background-color: #003cff;
        color: #ffffff;
        border-color: #003cff;
    }

    .modulo-45 {
        width: 1100px;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        padding: 35px;
        margin-bottom: 35px;
        display: flex;
    }

    .bloque-451 {
        width: 100%;
        display: flex;
        gap: 40px;
    }

    .contenido-4511 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .texto-45111 {
        font-size: 18px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45112 {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .contenido-451121 {
        display: flex;
        flex-direction: column;
        gap: 4px;
        border-bottom: 1px solid #f7f9fb;
        padding-bottom: 10px;
    }

    .texto-4511211 {
        font-size: 11px;
        font-weight: 700;
        color: #888888;
        text-transform: uppercase;
    }

    .texto-4511212 {
        font-size: 13px;
        font-weight: 600;
        color: #213242;
    }

    .contenido-4512 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .texto-45121 {
        font-size: 18px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45122 {
        width: 100%;
        height: 250px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
    }

    .mapa-mockup {
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, #e3f2fd 10%, #bbdefb 90%);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mapa-pin {
        width: 18px;
        height: 18px;
        border-radius: 50% 50% 50% 0;
        background: #ff0055;
        position: absolute;
        transform: rotate(-45deg);
        margin-top: -18px;
        animation: bouncePin 2s infinite;
    }

    .mapa-pin::after {
        content: '';
        width: 8px;
        height: 8px;
        margin: 5px 0 0 5px;
        background: #ffffff;
        position: absolute;
        border-radius: 50%;
    }

    .mapa-texto {
        position: absolute;
        bottom: 15px;
        background-color: rgba(33, 50, 66, 0.9);
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        padding: 5px 14px;
        border-radius: 20px;
    }
}

/* --------------------------------------------------------------------------
   MQ3: Laptop/Tablet Horizontal (min-width: 1025px) and (max-width: 1280px)
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) and (max-width: 1280px) {
    .seccion-4 {
        width: 100%;
        min-height: 100vh;
        background-color: #f7f9fb;
        color: #213242;
        padding-top: 150px;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Outfit', sans-serif;
    }

    .modulo-41 {
        width: 950px;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        overflow: hidden;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .bloque-411 {
        width: 100%;
        height: 220px;
        position: relative;
        overflow: hidden;
        display: flex;
    }

    .contenido-4111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-4112 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    }

    .bloque-412 {
        width: 100%;
        padding: 20px 30px;
        position: relative;
        display: flex;
        align-items: flex-end;
        gap: 20px;
    }

    .contenido-4121 {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 3px solid #ffffff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-top: -70px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icono-41211 {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

    .contenido-4122 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contenido-41221 {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .texto-412211 {
        font-size: 22px;
        font-weight: 800;
        color: #213242;
    }

    .texto-412212 {
        background-color: #e6f0ff;
        color: #003cff;
        font-size: 9px;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contenido-41222 {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #555555;
    }

    .contenido-412221 {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .texto-4122211 {
        font-weight: 700;
        color: #213242;
    }

    .texto-4122212 {
        color: #ff9900;
        letter-spacing: 1px;
    }

    .texto-4122213 {
        color: #888888;
    }

    .texto-412222 {
        color: #dddddd;
    }

    .texto-412223 {
        color: #555555;
    }

    .texto-41223 {
        font-size: 13px;
        color: #666666;
        line-height: 1.5;
        margin-top: 3px;
    }

    .contenido-4123 {
        display: flex;
        gap: 8px;
        align-self: center;
    }

    .boton-41231 {
        padding: 8px 18px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 24px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .boton-41231:hover {
        background-color: #002db8;
    }

    .boton-41231.seguido {
        background-color: #eaeaea;
        color: #555555;
    }

    .boton-41232 {
        padding: 8px 18px;
        background-color: #ffffff;
        color: #213242;
        border: 1px solid #dcdcdc;
        border-radius: 24px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .boton-41232:hover {
        background-color: #f7f9fb;
        border-color: #b5b5b5;
    }

    .modulo-42 {
        width: 950px;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 20px;
        display: flex;
    }

    .bloque-421 {
        display: flex;
        gap: 20px;
    }

    .boton-4211 {
        background: none;
        border: none;
        padding: 10px 5px;
        font-size: 14px;
        font-weight: 600;
        color: #888888;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
    }

    .boton-4211:hover {
        color: #213242;
    }

    .boton-4211.activo {
        color: #003cff;
        font-weight: 700;
    }

    .boton-4211.activo::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #003cff;
        border-radius: 3px 3px 0 0;
    }

    .modulo-43 {
        width: 950px;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        padding: 30px;
        margin-bottom: 30px;
        display: flex;
    }

    .bloque-431 {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .contenido-4311 {
        width: 250px;
        aspect-ratio: 9 / 16;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        background-color: #000000;
        display: flex;
    }

    .video-43111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-43112 {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 8px;
        font-weight: 700;
        padding: 3px 6px;
        border-radius: 20px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .contenido-431122 {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #ffffff;
        animation: pulseLive 1.5s infinite;
    }

    .contenido-4312 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .texto-43121 {
        font-size: 10px;
        font-weight: 800;
        color: #003cff;
        letter-spacing: 1px;
    }

    .texto-43122 {
        font-size: 24px;
        font-weight: 800;
        color: #213242;
        line-height: 1.2;
    }

    .texto-43123 {
        font-size: 13px;
        color: #666666;
        line-height: 1.6;
    }

    .boton-43124 {
        padding: 8px 20px;
        background-color: #213242;
        color: #ffffff;
        text-decoration: none;
        border-radius: 24px;
        font-size: 12px;
        font-weight: 700;
        align-self: flex-start;
        transition: all 0.2s ease;
    }

    .boton-43124:hover {
        background-color: #0d1721;
    }

    .modulo-44 {
        width: 950px;
        margin-bottom: 30px;
        display: flex;
    }

    .bloque-441 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .texto-4411 {
        font-size: 18px;
        font-weight: 800;
        color: #213242;
    }

    .bloque-4412 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        width: 100%;
    }

    .contenido-44121 {
        background-color: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
        border: 1px solid #eaeaea;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }

    .contenido-44121:hover {
        transform: translateY(-3px);
    }

    .contenido-441211 {
        width: 100%;
        aspect-ratio: 9 / 16;
        overflow: hidden;
        position: relative;
        background-color: #eaeaea;
        display: flex;
    }

    .video-card-element {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .img-card-fallback {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .video-play-indicator {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
    }

    .icono-play-svg {
        width: 12px;
        height: 12px;
        fill: #ffffff;
    }

    .badge-descuento-card {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 9px;
        font-weight: 800;
        padding: 3px 6px;
        border-radius: 4px;
        z-index: 3;
    }

    .contenido-441212 {
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex: 1;
    }

    .texto-4412121 {
        font-size: 12px;
        font-weight: 700;
        color: #213242;
        line-height: 1.4;
        height: 34px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .texto-4412121 a {
        color: #213242;
        text-decoration: none;
    }

    .texto-4412121 a:hover {
        color: #003cff;
    }

    .contenido-4412122 {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .texto-stars {
        color: #ff9900;
        font-size: 11px;
    }

    .texto-rating-num {
        font-size: 11px;
        color: #888888;
        font-weight: 600;
    }

    .contenido-4412123 {
        display: flex;
        align-items: baseline;
        gap: 5px;
        margin-top: 2px;
    }

    .texto-precio-ahora {
        font-size: 15px;
        font-weight: 800;
        color: #213242;
    }

    .texto-precio-antes {
        font-size: 11px;
        color: #888888;
        text-decoration: line-through;
    }

    .boton-card-cta {
        margin-top: auto;
        padding: 7px;
        background-color: #f7f9fb;
        color: #213242;
        text-align: center;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        border-radius: 6px;
        border: 1px solid #eaeaea;
        transition: all 0.2s ease;
    }

    .boton-card-cta:hover {
        background-color: #003cff;
        color: #ffffff;
        border-color: #003cff;
    }

    .modulo-45 {
        width: 950px;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        padding: 30px;
        margin-bottom: 30px;
        display: flex;
    }

    .bloque-451 {
        width: 100%;
        display: flex;
        gap: 30px;
    }

    .contenido-4511 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .texto-45111 {
        font-size: 16px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45112 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contenido-451121 {
        display: flex;
        flex-direction: column;
        gap: 2px;
        border-bottom: 1px solid #f7f9fb;
        padding-bottom: 8px;
    }

    .texto-4511211 {
        font-size: 10px;
        font-weight: 700;
        color: #888888;
        text-transform: uppercase;
    }

    .texto-4511212 {
        font-size: 12px;
        font-weight: 600;
        color: #213242;
    }

    .contenido-4512 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .texto-45121 {
        font-size: 16px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45122 {
        width: 100%;
        height: 220px;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
    }

    .mapa-mockup {
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, #e3f2fd 10%, #bbdefb 90%);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mapa-pin {
        width: 16px;
        height: 16px;
        border-radius: 50% 50% 50% 0;
        background: #ff0055;
        position: absolute;
        transform: rotate(-45deg);
        margin-top: -16px;
        animation: bouncePin 2s infinite;
    }

    .mapa-pin::after {
        content: '';
        width: 6px;
        height: 6px;
        margin: 5px 0 0 5px;
        background: #ffffff;
        position: absolute;
        border-radius: 50%;
    }

    .mapa-texto {
        position: absolute;
        bottom: 12px;
        background-color: rgba(33, 50, 66, 0.9);
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
    }
}

/* --------------------------------------------------------------------------
   MQ4: Tablet Vertical (min-width: 768px) and (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {
    .seccion-4 {
        width: 100%;
        min-height: 100vh;
        background-color: #f7f9fb;
        color: #213242;
        padding-top: 140px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Outfit', sans-serif;
    }

    .modulo-41 {
        width: 720px;
        background-color: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .bloque-411 {
        width: 100%;
        height: 180px;
        position: relative;
        overflow: hidden;
        display: flex;
    }

    .contenido-4111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-4112 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    }

    .bloque-412 {
        width: 100%;
        padding: 20px 25px;
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .contenido-4121 {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 3px solid #ffffff;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-top: -55px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icono-41211 {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

    .contenido-4122 {
        flex: 1;
        min-width: 320px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contenido-41221 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .texto-412211 {
        font-size: 20px;
        font-weight: 800;
        color: #213242;
    }

    .texto-412212 {
        background-color: #e6f0ff;
        color: #003cff;
        font-size: 9px;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contenido-41222 {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #555555;
    }

    .contenido-412221 {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .texto-4122211 {
        font-weight: 700;
        color: #213242;
    }

    .texto-4122212 {
        color: #ff9900;
    }

    .texto-4122213 {
        color: #888888;
    }

    .texto-412222 {
        color: #dddddd;
    }

    .texto-412223 {
        color: #555555;
    }

    .texto-41223 {
        font-size: 13px;
        color: #666666;
        line-height: 1.5;
    }

    .contenido-4123 {
        display: flex;
        gap: 8px;
        width: 100%;
        margin-top: 10px;
        justify-content: flex-start;
    }

    .boton-41231 {
        flex: 1;
        padding: 10px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 24px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        text-align: center;
    }

    .boton-41231.seguido {
        background-color: #eaeaea;
        color: #555555;
    }

    .boton-41232 {
        flex: 1;
        padding: 10px;
        background-color: #ffffff;
        color: #213242;
        border: 1px solid #dcdcdc;
        border-radius: 24px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        text-align: center;
    }

    .modulo-42 {
        width: 720px;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 20px;
        display: flex;
    }

    .bloque-421 {
        display: flex;
        gap: 15px;
        width: 100%;
        justify-content: space-between;
    }

    .boton-4211 {
        background: none;
        border: none;
        padding: 10px 0;
        font-size: 13px;
        font-weight: 600;
        color: #888888;
        cursor: pointer;
        position: relative;
        flex: 1;
        text-align: center;
    }

    .boton-4211.activo {
        color: #003cff;
        font-weight: 700;
    }

    .boton-4211.activo::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #003cff;
        border-radius: 3px 3px 0 0;
    }

    .modulo-43 {
        width: 720px;
        background-color: #ffffff;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 25px;
        display: flex;
    }

    .bloque-431 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .contenido-4311 {
        width: 240px;
        aspect-ratio: 9 / 16;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        background-color: #000000;
        display: flex;
    }

    .video-43111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-43112 {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 8px;
        font-weight: 700;
        padding: 3px 6px;
        border-radius: 20px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .contenido-431122 {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background-color: #ffffff;
        animation: pulseLive 1.5s infinite;
    }

    .contenido-4312 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
    }

    .texto-43121 {
        font-size: 10px;
        font-weight: 800;
        color: #003cff;
        letter-spacing: 1px;
    }

    .texto-43122 {
        font-size: 22px;
        font-weight: 800;
        color: #213242;
        line-height: 1.2;
    }

    .texto-43123 {
        font-size: 13px;
        color: #666666;
        line-height: 1.6;
    }

    .boton-43124 {
        padding: 8px 20px;
        background-color: #213242;
        color: #ffffff;
        text-decoration: none;
        border-radius: 24px;
        font-size: 12px;
        font-weight: 700;
        transition: all 0.2s ease;
    }

    .modulo-44 {
        width: 720px;
        margin-bottom: 25px;
        display: flex;
    }

    .bloque-441 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .texto-4411 {
        font-size: 18px;
        font-weight: 800;
        color: #213242;
    }

    .bloque-4412 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }

    .contenido-44121 {
        background-color: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #eaeaea;
        display: flex;
        flex-direction: column;
    }

    .contenido-441211 {
        width: 100%;
        aspect-ratio: 9 / 16;
        overflow: hidden;
        position: relative;
        background-color: #eaeaea;
        display: flex;
    }

    .video-card-element {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        z-index: 2;
    }

    .img-card-fallback {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .video-play-indicator {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
    }

    .icono-play-svg {
        width: 12px;
        height: 12px;
        fill: #ffffff;
    }

    .badge-descuento-card {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 9px;
        font-weight: 800;
        padding: 3px 6px;
        border-radius: 4px;
        z-index: 3;
    }

    .contenido-441212 {
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        flex: 1;
    }

    .texto-4412121 {
        font-size: 12px;
        font-weight: 700;
        color: #213242;
        line-height: 1.4;
        height: 34px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .texto-4412121 a {
        color: #213242;
        text-decoration: none;
    }

    .contenido-4412122 {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .texto-stars {
        color: #ff9900;
        font-size: 11px;
    }

    .texto-rating-num {
        font-size: 11px;
        color: #888888;
        font-weight: 600;
    }

    .contenido-4412123 {
        display: flex;
        align-items: baseline;
        gap: 5px;
        margin-top: 2px;
    }

    .texto-precio-ahora {
        font-size: 15px;
        font-weight: 800;
        color: #213242;
    }

    .texto-precio-antes {
        font-size: 11px;
        color: #888888;
        text-decoration: line-through;
    }

    .boton-card-cta {
        margin-top: auto;
        padding: 8px;
        background-color: #f7f9fb;
        color: #213242;
        text-align: center;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        border-radius: 6px;
        border: 1px solid #eaeaea;
    }

    .modulo-45 {
        width: 720px;
        background-color: #ffffff;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 25px;
        display: flex;
    }

    .bloque-451 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .contenido-4511 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .texto-45111 {
        font-size: 16px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45112 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contenido-451121 {
        display: flex;
        flex-direction: column;
        gap: 2px;
        border-bottom: 1px solid #f7f9fb;
        padding-bottom: 8px;
    }

    .texto-4511211 {
        font-size: 10px;
        font-weight: 700;
        color: #888888;
        text-transform: uppercase;
    }

    .texto-4511212 {
        font-size: 12px;
        font-weight: 600;
        color: #213242;
    }

    .contenido-4512 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .texto-45121 {
        font-size: 16px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45122 {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
    }

    .mapa-mockup {
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, #e3f2fd 10%, #bbdefb 90%);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mapa-pin {
        width: 16px;
        height: 16px;
        border-radius: 50% 50% 50% 0;
        background: #ff0055;
        position: absolute;
        transform: rotate(-45deg);
        margin-top: -16px;
        animation: bouncePin 2s infinite;
    }

    .mapa-pin::after {
        content: '';
        width: 6px;
        height: 6px;
        margin: 5px 0 0 5px;
        background: #ffffff;
        position: absolute;
        border-radius: 50%;
    }

    .mapa-texto {
        position: absolute;
        bottom: 12px;
        background-color: rgba(33, 50, 66, 0.9);
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
    }
}

/* --------------------------------------------------------------------------
   MQ5: Móvil Grande (min-width: 481px) and (max-width: 767px)
   -------------------------------------------------------------------------- */
@media (min-width: 481px) and (max-width: 767px) {
    .seccion-4 {
        width: 100%;
        min-height: 100vh;
        background-color: #f7f9fb;
        color: #213242;
        padding-top: 130px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Outfit', sans-serif;
    }

    .modulo-41 {
        width: 440px;
        background-color: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
    }

    .bloque-411 {
        width: 100%;
        height: 140px;
        position: relative;
        overflow: hidden;
        display: flex;
    }

    .contenido-4111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-4112 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    }

    .bloque-412 {
        width: 100%;
        padding: 15px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contenido-4121 {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 2px solid #ffffff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-top: -50px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icono-41211 {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

    .contenido-4122 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .contenido-41221 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .texto-412211 {
        font-size: 18px;
        font-weight: 800;
        color: #213242;
    }

    .texto-412212 {
        background-color: #e6f0ff;
        color: #003cff;
        font-size: 8px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 20px;
        text-transform: uppercase;
        display: inline-block;
    }

    .contenido-41222 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        font-size: 11px;
        color: #555555;
    }

    .contenido-412221 {
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .texto-4122211 {
        font-weight: 700;
        color: #213242;
    }

    .texto-4122212 {
        color: #ff9900;
    }

    .texto-4122213 {
        color: #888888;
    }

    .texto-412222 {
        display: none;
    }

    .texto-412223 {
        color: #555555;
    }

    .texto-41223 {
        font-size: 12px;
        color: #666666;
        line-height: 1.4;
        margin-top: 2px;
    }

    .contenido-4123 {
        display: flex;
        gap: 6px;
        width: 100%;
        justify-content: center;
    }

    .boton-41231 {
        flex: 1;
        padding: 8px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
    }

    .boton-41231.seguido {
        background-color: #eaeaea;
        color: #555555;
    }

    .boton-41232 {
        flex: 1;
        padding: 8px;
        background-color: #ffffff;
        color: #213242;
        border: 1px solid #dcdcdc;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
    }

    .modulo-42 {
        width: 440px;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 15px;
        display: flex;
    }

    .bloque-421 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
    }

    .boton-4211 {
        background-color: #ffffff;
        border: 1px solid #eaeaea;
        padding: 8px 0;
        font-size: 12px;
        font-weight: 600;
        color: #888888;
        cursor: pointer;
        text-align: center;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

    .boton-4211.activo {
        color: #ffffff;
        background-color: #003cff;
        border-color: #003cff;
        font-weight: 700;
    }

    .modulo-43 {
        width: 440px;
        background-color: #ffffff;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
        display: flex;
    }

    .bloque-431 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contenido-4311 {
        width: 180px;
        aspect-ratio: 9 / 16;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        background-color: #000000;
        display: flex;
    }

    .video-43111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-43112 {
        position: absolute;
        top: 8px;
        left: 8px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 8px;
        font-weight: 700;
        padding: 2px 4px;
        border-radius: 20px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .contenido-431122 {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #ffffff;
        animation: pulseLive 1.5s infinite;
    }

    .contenido-4312 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        align-items: center;
    }

    .texto-43121 {
        font-size: 9px;
        font-weight: 800;
        color: #003cff;
        letter-spacing: 0.5px;
    }

    .texto-43122 {
        font-size: 18px;
        font-weight: 800;
        color: #213242;
        line-height: 1.2;
    }

    .texto-43123 {
        font-size: 12px;
        color: #666666;
        line-height: 1.5;
    }

    .boton-43124 {
        padding: 8px 16px;
        background-color: #213242;
        color: #ffffff;
        text-decoration: none;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
    }

    .modulo-44 {
        width: 440px;
        margin-bottom: 15px;
        display: flex;
    }

    .bloque-441 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .texto-4411 {
        font-size: 16px;
        font-weight: 800;
        color: #213242;
    }

    .bloque-4412 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }

    .contenido-44121 {
        background-color: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #eaeaea;
        display: flex;
        flex-direction: column;
    }

    .contenido-441211 {
        width: 100%;
        aspect-ratio: 9 / 16;
        overflow: hidden;
        position: relative;
        background-color: #eaeaea;
        display: flex;
    }

    .video-card-element {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        z-index: 2;
    }

    .img-card-fallback {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .video-play-indicator {
        position: absolute;
        bottom: 8px;
        right: 8px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
    }

    .icono-play-svg {
        width: 10px;
        height: 10px;
        fill: #ffffff;
    }

    .badge-descuento-card {
        position: absolute;
        top: 8px;
        left: 8px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 8px;
        font-weight: 800;
        padding: 2px 4px;
        border-radius: 4px;
        z-index: 3;
    }

    .contenido-441212 {
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        flex: 1;
    }

    .texto-4412121 {
        font-size: 12px;
        font-weight: 700;
        color: #213242;
        line-height: 1.4;
        height: 34px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .texto-4412121 a {
        color: #213242;
        text-decoration: none;
    }

    .contenido-4412122 {
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .texto-stars {
        color: #ff9900;
        font-size: 10px;
    }

    .texto-rating-num {
        font-size: 10px;
        color: #888888;
        font-weight: 600;
    }

    .contenido-4412123 {
        display: flex;
        align-items: baseline;
        gap: 4px;
        margin-top: 2px;
    }

    .texto-precio-ahora {
        font-size: 14px;
        font-weight: 800;
        color: #213242;
    }

    .texto-precio-antes {
        font-size: 11px;
        color: #888888;
        text-decoration: line-through;
    }

    .boton-card-cta {
        margin-top: auto;
        padding: 6px;
        background-color: #f7f9fb;
        color: #213242;
        text-align: center;
        text-decoration: none;
        font-size: 10px;
        font-weight: 700;
        border-radius: 4px;
        border: 1px solid #eaeaea;
    }

    .modulo-45 {
        width: 440px;
        background-color: #ffffff;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
        display: flex;
    }

    .bloque-451 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-4511 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .texto-45111 {
        font-size: 14px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45112 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contenido-451121 {
        display: flex;
        flex-direction: column;
        gap: 2px;
        border-bottom: 1px solid #f7f9fb;
        padding-bottom: 6px;
    }

    .texto-4511211 {
        font-size: 9px;
        font-weight: 700;
        color: #888888;
        text-transform: uppercase;
    }

    .texto-4511212 {
        font-size: 11px;
        font-weight: 600;
        color: #213242;
    }

    .contenido-4512 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .texto-45121 {
        font-size: 14px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45122 {
        width: 100%;
        height: 160px;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
    }

    .mapa-mockup {
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, #e3f2fd 10%, #bbdefb 90%);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mapa-pin {
        width: 14px;
        height: 14px;
        border-radius: 50% 50% 50% 0;
        background: #ff0055;
        position: absolute;
        transform: rotate(-45deg);
        margin-top: -14px;
        animation: bouncePin 2s infinite;
    }

    .mapa-pin::after {
        content: '';
        width: 5px;
        height: 5px;
        margin: 4px 0 0 4px;
        background: #ffffff;
        position: absolute;
        border-radius: 50%;
    }

    .mapa-texto {
        position: absolute;
        bottom: 8px;
        background-color: rgba(33, 50, 66, 0.9);
        color: #ffffff;
        font-size: 9px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 20px;
    }
}

/* --------------------------------------------------------------------------
   MQ6: Móvil Pequeño (min-width: 320px) and (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (min-width: 320px) and (max-width: 480px) {
    .seccion-4 {
        width: 100%;
        min-height: 100vh;
        background-color: #f7f9fb;
        color: #213242;
        padding-top: 120px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Outfit', sans-serif;
    }

    .modulo-41 {
        width: 300px;
        background-color: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 12px;
        display: flex;
        flex-direction: column;
    }

    .bloque-411 {
        width: 100%;
        height: 110px;
        position: relative;
        overflow: hidden;
        display: flex;
    }

    .contenido-4111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-4112 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    }

    .bloque-412 {
        width: 100%;
        padding: 12px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contenido-4121 {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 2px solid #ffffff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-top: -45px;
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .icono-41211 {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }

    .contenido-4122 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .contenido-41221 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }

    .texto-412211 {
        font-size: 16px;
        font-weight: 800;
        color: #213242;
    }

    .texto-412212 {
        background-color: #e6f0ff;
        color: #003cff;
        font-size: 8px;
        font-weight: 700;
        padding: 1px 5px;
        border-radius: 20px;
        text-transform: uppercase;
        display: inline-block;
    }

    .contenido-41222 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        font-size: 10px;
        color: #555555;
    }

    .contenido-412221 {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .texto-4122211 {
        font-weight: 700;
        color: #213242;
    }

    .texto-4122212 {
        color: #ff9900;
    }

    .texto-4122213 {
        color: #888888;
    }

    .texto-412222 {
        display: none;
    }

    .texto-412223 {
        color: #555555;
    }

    .texto-41223 {
        font-size: 11px;
        color: #666666;
        line-height: 1.4;
        margin-top: 1px;
    }

    .contenido-4123 {
        display: flex;
        gap: 5px;
        width: 100%;
        justify-content: center;
    }

    .boton-41231 {
        flex: 1;
        padding: 7px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        cursor: pointer;
    }

    .boton-41231.seguido {
        background-color: #eaeaea;
        color: #555555;
    }

    .boton-41232 {
        flex: 1;
        padding: 7px;
        background-color: #ffffff;
        color: #213242;
        border: 1px solid #dcdcdc;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        cursor: pointer;
    }

    .modulo-42 {
        width: 300px;
        border-bottom: 1px solid #eaeaea;
        margin-bottom: 12px;
        display: flex;
    }

    .bloque-421 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        width: 100%;
    }

    .boton-4211 {
        background-color: #ffffff;
        border: 1px solid #eaeaea;
        padding: 7px 0;
        font-size: 11px;
        font-weight: 600;
        color: #888888;
        cursor: pointer;
        text-align: center;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

    .boton-4211.activo {
        color: #ffffff;
        background-color: #003cff;
        border-color: #003cff;
        font-weight: 700;
    }

    .modulo-43 {
        width: 300px;
        background-color: #ffffff;
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 12px;
        display: flex;
    }

    .bloque-431 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contenido-4311 {
        width: 150px;
        aspect-ratio: 9 / 16;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        background-color: #000000;
        display: flex;
    }

    .video-43111 {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contenido-43112 {
        position: absolute;
        top: 6px;
        left: 6px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 7px;
        font-weight: 700;
        padding: 2px 4px;
        border-radius: 20px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .contenido-431122 {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #ffffff;
        animation: pulseLive 1.5s infinite;
    }

    .contenido-4312 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
        text-align: center;
        align-items: center;
    }

    .texto-43121 {
        font-size: 8px;
        font-weight: 800;
        color: #003cff;
        letter-spacing: 0.5px;
    }

    .texto-43122 {
        font-size: 15px;
        font-weight: 800;
        color: #213242;
        line-height: 1.2;
    }

    .texto-43123 {
        font-size: 11px;
        color: #666666;
        line-height: 1.4;
    }

    .boton-43124 {
        padding: 6px 14px;
        background-color: #213242;
        color: #ffffff;
        text-decoration: none;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 700;
    }

    .modulo-44 {
        width: 300px;
        margin-bottom: 12px;
        display: flex;
    }

    .bloque-441 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .texto-4411 {
        font-size: 14px;
        font-weight: 800;
        color: #213242;
    }

    .bloque-4412 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .contenido-44121 {
        background-color: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #eaeaea;
        display: flex;
        flex-direction: column;
    }

    .contenido-441211 {
        width: 100%;
        aspect-ratio: 9 / 16;
        overflow: hidden;
        position: relative;
        background-color: #eaeaea;
        display: flex;
    }

    .video-card-element {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        z-index: 2;
    }

    .img-card-fallback {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .video-play-indicator {
        position: absolute;
        bottom: 8px;
        right: 8px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
    }

    .icono-play-svg {
        width: 10px;
        height: 10px;
        fill: #ffffff;
    }

    .badge-descuento-card {
        position: absolute;
        top: 8px;
        left: 8px;
        background-color: #ff0055;
        color: #ffffff;
        font-size: 8px;
        font-weight: 800;
        padding: 2px 4px;
        border-radius: 4px;
        z-index: 3;
    }

    .contenido-441212 {
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex: 1;
    }

    .texto-4412121 {
        font-size: 11px;
        font-weight: 700;
        color: #213242;
        line-height: 1.4;
        height: 30px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .texto-4412121 a {
        color: #213242;
        text-decoration: none;
    }

    .contenido-4412122 {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .texto-stars {
        color: #ff9900;
        font-size: 9px;
    }

    .texto-rating-num {
        font-size: 9px;
        color: #888888;
        font-weight: 600;
    }

    .contenido-4412123 {
        display: flex;
        align-items: baseline;
        gap: 3px;
        margin-top: 1px;
    }

    .texto-precio-ahora {
        font-size: 13px;
        font-weight: 800;
        color: #213242;
    }

    .texto-precio-antes {
        font-size: 10px;
        color: #888888;
        text-decoration: line-through;
    }

    .boton-card-cta {
        margin-top: auto;
        padding: 5px;
        background-color: #f7f9fb;
        color: #213242;
        text-align: center;
        text-decoration: none;
        font-size: 9px;
        font-weight: 700;
        border-radius: 4px;
        border: 1px solid #eaeaea;
    }

    .modulo-45 {
        width: 300px;
        background-color: #ffffff;
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 12px;
        display: flex;
    }

    .bloque-451 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .contenido-4511 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .texto-45111 {
        font-size: 12px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45112 {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .contenido-451121 {
        display: flex;
        flex-direction: column;
        gap: 1px;
        border-bottom: 1px solid #f7f9fb;
        padding-bottom: 4px;
    }

    .texto-4511211 {
        font-size: 8px;
        font-weight: 700;
        color: #888888;
        text-transform: uppercase;
    }

    .texto-4511212 {
        font-size: 10px;
        font-weight: 600;
        color: #213242;
    }

    .contenido-4512 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .texto-45121 {
        font-size: 12px;
        font-weight: 800;
        color: #213242;
    }

    .contenido-45122 {
        width: 100%;
        height: 130px;
        border-radius: 6px;
        overflow: hidden;
        display: flex;
    }

    .mapa-mockup {
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, #e3f2fd 10%, #bbdefb 90%);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mapa-pin {
        width: 12px;
        height: 12px;
        border-radius: 50% 50% 50% 0;
        background: #ff0055;
        position: absolute;
        transform: rotate(-45deg);
        margin-top: -12px;
        animation: bouncePin 2s infinite;
    }

    .mapa-pin::after {
        content: '';
        width: 4px;
        height: 4px;
        margin: 3px 0 0 3px;
        background: #ffffff;
        position: absolute;
        border-radius: 50%;
    }

    .mapa-texto {
        position: absolute;
        bottom: 6px;
        background-color: rgba(33, 50, 66, 0.9);
        color: #ffffff;
        font-size: 8px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 20px;
    }
}

/* ==========================================================================
   3. ANIMACIONES KEYFRAMES
   ========================================================================== */

@keyframes pulseLive {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

@keyframes bouncePin {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(-8px) rotate(-45deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}
