#anuncio_vr {
    background: transparent;
    color: inherit;
    padding: 70px;
}


/* ================= CONTENEDOR RAÍZ ================= */
#anuncio_vr .vrx-container {
    font-family: Inter, sans-serif;
    position: relative;
    z-index: 2;
}

/* ================= FONDO / GRADIENTE ================= */
#anuncio_vr .vrx-container {
    --vrx-from: #160505;
    --vrx-to: #000000;
    background-image: linear-gradient(to bottom right,
            var(--vrx-from),
            var(--vrx-to));
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 0px 20px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

/* Glow decorativo */
#anuncio_vr .vrx-container::before,
#anuncio_vr .vrx-container::after {
    content: "";
    position: absolute;
    background: radial-gradient(circle, rgb(142, 2, 37), transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

#anuncio_vr .vrx-container::before {
    width: 550px;
    height: 500px;
    top: -150px;
    left: -150px;
}

#anuncio_vr .vrx-container::after {
    width: 550px;
    height: 450px;
    bottom: -150px;
    right: -150px;
}

/* ================= LAYOUT ================= */
#anuncio_vr .vrx-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 0px 24px;
}

/* ================= TEXTO ================= */
#anuncio_vr .vrx-content {
    flex: 1;
}

#anuncio_vr .vrx-title {
    font-size: clamp(2.1rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

#anuncio_vr .vrx-highlight {
    font-family: 'Permanent Marker', cursive;
    color: rgb(218, 12, 64);
    text-shadow: 4px 4px 0 rgba(0, 0, 0, .35);
    display: inline-block;
}

#anuncio_vr .vrx-description {
    font-size: 1.15rem;
    max-width: 540px;
    line-height: 1.7;
    color: rgb(203 213 225);
}

/* ================= BOTÓN ================= */
#anuncio_vr .vrx-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 42px;

    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    border-radius: 999px;

    background: linear-gradient(135deg, #8e0225, #ff0040);
    box-shadow: 0 18px 40px rgba(255, 0, 64, .35);

    transition: transform .35s ease, box-shadow .35s ease;
}

#anuncio_vr .vrx-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 55px rgba(255, 0, 64, .55);
}

#anuncio_vr .vrx-button svg {
    width: 22px;
    height: 22px;
}

/* ================= IMAGEN ================= */
#anuncio_vr .vrx-image {
    flex: 1;
    text-align: center;
    padding: 20px;
    filter:
        drop-shadow(0 35px 60px rgb(68, 65, 65)) drop-shadow(0 0 25px rgba(255, 0, 64, 0.25));
}

#anuncio_vr .vrx-image img {
    max-width: 100%;
    animation: vrx-float 7s ease-in-out infinite;
}

@keyframes vrx-float {
    50% {
        transform: translateY(-20px);
    }
}

/* ================= RESPONSIVE ================= */

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    #anuncio_vr {
        padding: 50px 20px;
    }

    #anuncio_vr .vrx-container {
        min-height: 60vh;
        padding: 0 16px;
    }

    #anuncio_vr .vrx-layout {
        gap: 40px;
    }

    #anuncio_vr .vrx-title {
        font-size: clamp(1.8rem, 3vw, 2.2rem);
    }

    #anuncio_vr .vrx-description {
        font-size: 1.05rem;
    }
}

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
    #anuncio_vr {
        padding: 40px 16px;
    }

    #anuncio_vr .vrx-container {
        min-height: auto;
        padding: 0 12px;
        border-radius: 20px;
    }

    #anuncio_vr .vrx-container::before {
        width: 350px;
        height: 350px;
        top: -100px;
        left: -100px;
    }

    #anuncio_vr .vrx-container::after {
        width: 350px;
        height: 350px;
        bottom: -100px;
        right: -100px;
    }

    #anuncio_vr .vrx-layout {
        flex-direction: column;
        text-align: center;
        padding: 36px 20px;
        gap: 32px;
    }

    #anuncio_vr .vrx-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #anuncio_vr .vrx-title {
        margin-bottom: 20px;
    }

    #anuncio_vr .vrx-description {
        font-size: 1rem;
        max-width: 100%;
    }

    #anuncio_vr .vrx-button {
        padding: 14px 36px;
        font-size: 0.95rem;
    }

    #anuncio_vr .vrx-button svg {
        width: 20px;
        height: 20px;
    }

    #anuncio_vr .vrx-image {
        padding: 10px;
    }

    #anuncio_vr .vrx-image img {
        max-width: 85%;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    #anuncio_vr {
        padding: 30px 12px;
    }

    #anuncio_vr .vrx-container {
        border-radius: 16px;
    }

    #anuncio_vr .vrx-container::before,
    #anuncio_vr .vrx-container::after {
        width: 250px;
        height: 250px;
        filter: blur(50px);
    }

    #anuncio_vr .vrx-layout {
        padding: 28px 16px;
        gap: 24px;
    }

    #anuncio_vr .vrx-title {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
        margin-bottom: 16px;
    }

    #anuncio_vr .vrx-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    #anuncio_vr .vrx-button {
        padding: 12px 28px;
        font-size: 0.9rem;
        gap: 8px;
    }

    #anuncio_vr .vrx-button svg {
        width: 18px;
        height: 18px;
    }

    #anuncio_vr .vrx-image img {
        max-width: 90%;
    }
}

/* Móviles extra pequeños */
@media (max-width: 360px) {
    #anuncio_vr {
        padding: 20px 8px;
    }

    #anuncio_vr .vrx-layout {
        padding: 24px 12px;
    }

    #anuncio_vr .vrx-title {
        font-size: 1.4rem;
    }

    #anuncio_vr .vrx-button {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}