*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    overflow-x: hidden;
}
img, video{
    pointer-events: none;
}
@font-face {
    font-family: 'Geomanist';
    src: url(../Fonts/geomanist-regular-webfont.ttf);
}
@font-face {
    font-family: 'Meccanica';
    src: url(../Fonts/meccanica-regular.otf);
}
@font-face {
    font-family: 'Neue';
    src: url(../Fonts/NeueMachina-Regular.otf);
}
@font-face {
    font-family: 'Phage';
    src: url(../Fonts/Phage\ Regular.otf);
}
@font-face {
    font-family: 'Sansburg';
    src: url(../Fonts/Sansburg.ttf);
}
@font-face {
    font-family: 'JustR';
    src: url(../Fonts/JustR.otf);
}
@keyframes abajo-anim{
    0%{
        transform: translateY(0);
    }
    25%{
        transform: translateY(10px);
    }
    50%{
        transform: translateY(0);
    }
    75%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(0);
    }
}
@keyframes encoger {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(0.8);
    }
    100%{
        transform: scale(1);
    }
}
body{
    background-color: white;
    color: white;
    font-family: 'Geomanist';
}
header{
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px 20px;
    z-index: 100;
}
.headernav{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-nav{
    font-family: 'Phage';
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}
.logo-nav:hover{
    color: rgb(115, 115, 115);
    transform: scale(0.9);
}
.video-fondo{
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}
.home-presentacion{
    top: 0;
    height: 90vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.home-presentacion-h1{
    font-size: 50px;
    margin-bottom: 20px;
}
.home-presentacion span{
    font-size: 30px;
    font-family: 'Phage';
    margin-bottom: 5%;
}
.deslizar{
    height: 60px;
    overflow: hidden;
    display: flex;
    gap: 10px;
}
.deslizar img{
    object-fit: contain;
    background-repeat: no-repeat;
    width: 50px;
    filter: invert(100%);
    animation: abajo-anim 1.6s infinite;
}
.home-bang{
    height: 120vh;
    padding: 40px;
    margin-bottom: 10%;
}
.promos{
    animation: encoger 2s infinite;
}
.bang-titulo{
    display: flex;
    gap: 460px;
    margin-bottom: 0.5%;
    font-size: 15px;
    text-align: start !important;
}
.bang hr{
    border: 1px solid white;
}
.productos-bang{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    font-family: 'Geomanist';
}
.product-bang{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(95, 95, 95, 0.215);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    color: white;
    padding: 15px;
    box-sizing: border-box;
    width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-bang:hover{
    transform: translateY(-10px);
    border-radius: 10px;
    box-shadow: 2px 4px 6px rgb(169, 169, 169);
}
.product-bang img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}
.product-bang p, .product-bang span{
    margin: 5px 0;
    font-size: 16px;
}
.promos{
    animation: encoger 2s infinite;
}
.home-vopk{
    height: 70vh;
    padding: 40px;
    margin-bottom: 10%;
    overflow: hidden;
}
.promos{
    animation: encoger 2s infinite;
}
.vopk-titulo{
    display: flex;
    gap: 460px;
    margin-bottom: 0.5%;
    font-size: 15px;
    text-align: start !important;
}
.vopk hr{
    border: 1px solid white;
}
.productos-vopk{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    font-family: 'Geomanist';
}
.product-vopk{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(95, 95, 95, 0.215);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    color: white;
    padding: 15px;
    box-sizing: border-box;
    width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-vopk:hover{
    transform: translateY(-10px);
    border-radius: 10px;
    box-shadow: 2px 4px 6px rgb(169, 169, 169);
}
.product-vopk img{
    width: 100%;
    border-radius: 10px;
    height: auto;
}
.product-vopk p, .product-vopk span{
    margin: 5px 0;
    font-size: 16px;
}
.ventana{
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
}
.ventana.show{
    display: flex;
    position: fixed;
    top: 0.1%;
    left: 0.1%;
}
.ventana-fondo{
    background-color: rgb(32, 32, 32);
    width: 90%;
    height: 600px;
    border-radius: 5px;
    padding: 30px;
}
.descripcion-bang{
    position: absolute;
    top: 15%;
    left: 45%;
    z-index: 1;
}
.descripcion-bang h2{
    font-size: 30px;
    margin-bottom: 5%;
    width: 70%;
}
.descripcion-bang p{
    font-size: 20px;
    width: 70%;
    margin-bottom: 5%;
}
.precio-s{
    color: red;
    animation: encoger 3s infinite;
}
.cant{
    color: yellow;
}
.elegir-contacto{
    position: absolute;
    left: 60%;
    top: 75%;
    border: none;
    z-index: 1;
    padding: 15px 40px;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 5px;
    color: black;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.elegir-contacto:hover, .elegir-contacto-1:hover{
    transform: scale(0.9);
    background-color: rgb(175, 175, 175);
}
.contacto-elegir{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(32, 32, 32);
    width: 90%;
    max-width: 400px; 
    padding: 20px;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1000001;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.cerrar-ventana-con{
    position: absolute;
    top: 0;
    left: 90%;
    z-index: 5;
    background-color: rgb(255, 85, 85);
    transition: background-color 0.2s ease;
    padding: 3px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.cerrar-ventana-con:hover{
    background-color: red;
}
.contacto-elegir.show {
    display: flex;
}
.contacto-elegir h2{
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: white;
}
.contacto-multi {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
    overflow: hidden;
}
.comprar-whatsapp, .comprar-instagram{
    width: 80%;
    max-width: 250px;
    padding: 12px 0;
    font-size: 16px;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease;
}
.comprar-instagram img, .comprar-whatsapp img{
    width: 30px;
}
.comprar-whatsapp{
    background-color: rgb(91, 255, 79);
    color: white;
}
.comprar-instagram{
    background-color: rgb(255, 85, 204);
    color: white;
}
.comprar-whatsapp:hover, .comprar-instagram:hover{
    transform: scale(1.05);
}

.ventana-fondo img{
    position: absolute;
    z-index: 1;
    width: 490px;
    top: 10%;
    border-radius: 5px;
}
.cerrar-ventana{
    position: absolute;
    top: 0;
    left: 95%;
    z-index: 5;
    background-color: rgb(255, 85, 85);
    transition: background-color 0.2s ease;
    padding: 3px 24px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.cerrar-ventana:hover{
    background-color: red;
}
.ventana-1{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
}
.ventana-1.show {
    display: flex;
}
.ventana-fondo-1{
    background-color: rgb(32, 32, 32);
    width: 90%;
    height: 600px;
    border-radius: 5px;
    padding: 30px;
}
.descripcion-razzbar{
    position: absolute;
    top: 20%;
    left: 45%;
    z-index: 1;
}
.descripcion-razzbar h2{
    font-size: 30px;
    margin-bottom: 5%;
}
.descripcion-razzbar p{
    font-size: 20px;
    width: 70%;
    margin-bottom: 5%;
}
.precio-s{
    color: red;
    animation: encoger 3s infinite;
}
.cant{
    color: yellow;
}
.ventana-fondo-1 img{
    position: absolute;
    z-index: 1;
    width: 490px;
    border-radius: 5px;
}
.ventana-2{
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
}
.ventana-2.show{
    display: flex;
    position: fixed;
    top: 0.1%;
    left: 0.1%;
}
.ventana-fondo-2{
    background-color: rgb(32, 32, 32);
    width: 90%;
    height: 600px;
    border-radius: 5px;
    padding: 30px;
}
.descripcion-vopk{
    position: absolute;
    top: 15%;
    left: 45%;
    z-index: 1;
}
.descripcion-vopk h2{
    font-size: 30px;
    margin-bottom: 5%;
    width: 70%;
}
.descripcion-vopk p{
    font-size: 20px;
    width: 70%;
    margin-bottom: 5%;
}
.precio-s{
    color: red;
    animation: encoger 3s infinite;
}
.cant{
    color: yellow;
}
.ventana-fondo-2 img{
    position: absolute;
    z-index: 1;
    width: 490px;
    top: 10%;
    border-radius: 5px;
}
.agotado{
    position: absolute;
    backdrop-filter: blur(10px);
    width: 95%;
    min-height: 120%;
    z-index: 10;
    gap: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.agotado p{
    font-size: 40px;
    color: red;
    background-color: white;
    padding: 15px 25px;
    border-radius: 10px;
}
.home-razzbar{
    height: 120vh;
    padding: 40px;
    margin-bottom: 10%;
    overflow: hidden;
}
.razzbar-titulo{
    display: flex;
    gap: 450px;
    margin-bottom: 0.5%;
    font-size: 15px;
}
.razzbar hr{
    border: 1px solid white;
}
.productos-razzbar{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    font-family: 'Geomanist';
}
.product-razzbar{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(95, 95, 95, 0.215);
    min-height: 340px;
    backdrop-filter: blur(5px);
    border-radius: 10px;
    color: white;
    padding: 15px;
    box-sizing: border-box;
    width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-razzbar:hover{
    transform: translateY(-10px);
    border-radius: 10px;
    box-shadow: 2px 4px 6px rgb(169, 169, 169);
}
.product-razzbar img{
    width: 100%;
    border-radius: 10px;
    height: auto;
}
.product-razzbar p, .product-razzbar span{
    margin: 5px 0;
}
.home-waspe{
    height: 120vh;
    padding: 40px;
    margin-bottom: 10%;
}
.promos{
    animation: encoger 2s infinite;
}
.waspe-titulo{
    display: flex;
    gap: 450px;
    margin-bottom: 0.5%;
    font-size: 15px;
}
.waspe hr{
    border: 1px solid white;
}
.productos-waspe{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    font-family: 'Geomanist';
}
.product-waspe{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(95, 95, 95, 0.215);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    color: white;
    padding: 15px;
    box-sizing: border-box;
    width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.productos-waspe button:hover{
    transform: translateY(-10px);
    border-radius: 10px;
    box-shadow: 2px 4px 6px rgb(169, 169, 169);
}
.product-waspe img{
    width: 100%;
    border-radius: 10px;
    height: auto;
}
.product-waspe p, .product-waspe span{
    margin: 5px 0;
}
.ventana-3{
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
}
.ventana-3.show{
    display: flex;
    position: fixed;
    top: 0.1%;
    left: 0.1%;
}
.ventana-fondo-3{
    background-color: rgb(32, 32, 32);
    width: 90%;
    height: 600px;
    border-radius: 5px;
    padding: 30px;
}
.descripcion-waspe{
    position: absolute;
    top: 15%;
    left: 45%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.descripcion-waspe h2{
    font-size: 30px;
    margin-bottom: 5%;
    width: 70%;
}
.descripcion-waspe p{
    font-size: 20px;
    width: 70%;
}
.ventana-fondo-3 img{
    position: absolute;
    z-index: 1;
    width: 490px;
    top: 10%;
    border-radius: 5px;
}
footer{
    height: auto;
    backdrop-filter: blur(10px);
}
.esencial{
    padding: 60px;
    display: flex;
    gap: 150px;
}
.titulo-footer h1{
    font-family: 'Phage';
    font-size: 50px;
}
.titulo-footer p{
    font-family: 'Meccanica';
    font-size: 25px;
}
.problema{
    padding: 30px;
    background-color: rgb(40, 40, 40);
    border-radius: 5px;
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    min-height: 100px;
}
.problema-correo a{
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    padding: 10px 15px;
    text-decoration: none;
    background: white;
    border-radius: 5px;
    color: black;
    transition: all 0.3s ease;
}
.problema-correo a:hover{
    transform: scale(0.9);
    background-color: rgb(150, 150, 150);
}
.copyright{
    background-color: rgb(40, 40, 40);
    flex: 1;
    height: 20px;
    align-self: flex-end;
    text-align: center ;
}
.redes{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.redes a{
    padding: 10px 15px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.redes a:hover{
    transform: scale(0.9);
}
.redes img{
    width: 50px;
    filter: invert(100%);
}
/* --- Responsive: móvil --- */
@media (max-width: 430px) {
    body, html{
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    header nav ul{
        display: none;
    }
    .video-fondo{
        position: fixed;
        width: 100%;
        height: 100%;
    }
    .logo-nav{
        font-family: 'Phage';
        display: block;
    }
    .deslizar img{
        width: 35px;
        height: 35px;
        filter: invert(100%);
        animation: abajo-anim 1.6s infinite;
    }
    .home-presentacion{
        margin-top: -40%;
        height: 120vh;
        padding: 20px;
        text-align: center;
    }
    .home-presentacion span{
        margin-bottom: 30%;
    }
    .home-presentacion-h1{
        top: 34%;
        text-align: center;
    }
    .home-bang, .home-razzbar, .home-waspe, .home-vopk{
        height: 200%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(1fr));
        gap: 15px;
        justify-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        overflow-y: hidden;
    }
    .home-waspe {
        position: relative;
    }
    .productos-bang, .productos-razzbar, .productos-waspe, .productos-vopk{
        justify-items: center;
    }
    .bang-titulo, .razzbar-titulo, .waspe-titulo, .vopk-titulo{
        gap: 1px;
        text-align: center;
    }
    .promos{
        font-size: 15px;
        text-align: center;
    }
    .ventana{
        display: none;
        width: 100%; 
        height: 90%;
        background: rgba(0, 0, 0, 0.845);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    .ventana.show{
        display: flex;
        overflow-y: hidden;
        position: fixed;
        top: 5%;
    }
    .ventana-fondo{
        width: 90%;
        height: 900px;
        background-color: rgb(32, 32, 32);
    }
    .descripcion-bang, .descripcion-razzbar, .descripcion-vopk{
        width: 100% !important;
        text-align: center;
        position: absolute !important;
        left: 63.5% !important;
        top: 67% !important;
        transform: translate(-50%, -50%);
    }
    .elegir-contacto{
        position: absolute;
        left: 10% !important;
        width: 80%;
    }
    .elegir-contacto-1{
        position: absolute;
        left: 10% !important;
        width: 80%;
        border-radius: 5px;
    }
    .descripcion-bang h2, .descripcion-razzbar h2, .descripcion-vopk h2, .descripcion-waspe h2{
        font-size: 15px !important;
    }
    .descripcion-bang p, .descripcion-razzbar p, .descripcion-vopk p, .descripcion-waspe p{
        font-size: 12px !important;
    }
    .ventana img, .ventana-1 img, .ventana-2 img, .ventana-3 img{
        position: absolute;
        width: 250px !important;
        left: 50%;
        top: 25%;
        transform: translate(-50%, -50%);
    }
    .cerrar-ventana{
        font-size: 20px;
        left: 75% !important;
        top: 0% !important;
        padding: 5px 30px;
    }
    .ventana-1{
        display: none;
        width: 100%; 
        height: 90%;
        background: rgba(0, 0, 0, 0.845);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    .ventana-1.show{
        display: flex;
        overflow-y: hidden;
        position: fixed;
        top: 5%;
    }
    .ventana-fondo-1{
        width: 90%;
        height: 900px;
        background-color: rgb(32, 32, 32);
    }
    .descripcion-razzbar h2{
        width: 70%;
    }
    .ventana-2{
        display: none;
        width: 100%; 
        height: 90%;
        background: rgba(0, 0, 0, 0.845);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    .ventana-2.show{
        display: flex;
        overflow-y: hidden;
        position: fixed;
        top: 5%;
    }
    .ventana-fondo-2{
        width: 90%;
        height: 900px;
        background-color: rgb(32, 32, 32);
    }
    .ventana-3{
        display: none;
        width: 100%; 
        height: 90%;
        background: rgba(0, 0, 0, 0.845);
        justify-content: center;
        align-items: center;
        z-index: 10000;
    }
    .ventana-3.show{
        display: flex;
        overflow-y: hidden;
        position: fixed;
        top: 5%;
    }
    .ventana-fondo-3{
        width: 90%;
        height: 900px;
        background-color: rgb(32, 32, 32);
    }
    .descripcion-waspe{
        width: 100% !important;
        text-align: center;
        position: absolute !important;
        left: 63.5% !important;
        top: 64% !important;
        transform: translate(-50%, -50%);
        gap: 15px;
    }
    .home-razzbar{
        position: relative;
    }
    .agotado{
        position: absolute;
        top: 1.8%;
        left: 0;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 700px;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 10000;
    }
    .agotado p{
        font-size: 30px;
        z-index: 10001;
    }
    .esencial{
        gap: 10px;
        flex-direction: column;
        padding: 10px;
    }
    .titulo-footer h1{
        font-size: 35px !important;
        margin-bottom: 10%;
        text-align: center;
    }
    .titulo-footer p{
        margin-bottom: 10%;
        text-align: center;
    }
    .problema{
        width: 100%;
        gap: 15px !important;
    }
    .problema h2{
        font-size: 15px !important;
    }
    .problema p{
        font-size: 10px !important;

    }
    .problema-correo{
        width: 100%;
    }
    .problema-correo a{
        padding: 30px 15px !important;
        background-color: white;
        width: 100%;
        color: black;
        transition: transform 0.3s ease;
    }
    .problema-correo a:hover{
        transform: translate(0.3);
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    body, html {
        overflow-x: hidden;
        font-size: 16px;
    }
    header{
        padding: 20px 15px;
    }
    .logo-nav{
        font-size: 32px;
    }
    .home-presentacion{
        padding: 20px;
        text-align: center;
    }
    .home-presentacion-h1{
        font-size: 38px;
    }
    .home-presentacion span{
        font-size: 22px;
    }
    .bang, .razzbar, .vopk, .waspe{
        margin-bottom: 5%;
        height: auto;
    }
    .home-bang{
        overflow-y: hidden;
    }
    .productos-bang, .productos-vopk, .productos-razzbar, .productos-waspe{
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
        padding: 10px;
    }
    .productos-vopk{
        margin-bottom: 100%;
    }
    .product-bang, .product-vopk, .product-razzbar, .product-waspe{
        width: 100%;
        max-width: 220px;
    }
    .bang-titulo, .vopk-titulo, .razzbar-titulo, .waspe-titulo{
        gap: 50px;
        font-size: 14px;
        justify-content: center;
    }
    .ventana-fondo, .ventana-fondo-1, .ventana-fondo-2, .ventana-fondo-3{
        width: 95%;
        height: 1100px;
        padding: 20px;
    }
    .ventana-fondo img, .ventana-fondo-1 img, .ventana-fondo-2 img, .ventana-fondo-3 img{
        width: 350px;
        max-width: 100%;
        height: auto;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .descripcion-bang, .descripcion-razzbar, .descripcion-vopk, .descripcion-waspe{
        left: 65%;
        top: 65%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }
    .elegir-contacto, .elegir-contacto-1{
        left: 35%;
        top: 85%;
        padding: 12px 60px;
    }
    .cerrar-ventana{
        left: 90%;
        top: 1%;
    }
    .esencial{
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    .titulo-footer h1{
        font-size: 40px;
        text-align: center;
    }
    .titulo-footer p{
        text-align: center;
        font-size: 20px;
    }
    .problema{
        width: 100%;
        gap: 190px;
        padding: 15px;
    }
    .problema h2{
        font-size: 18px;
    }
    .problema-correo span{
        font-size: 18px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .bang-titulo, .vopk-titulo, .razzbar-titulo, .waspe-titulo{
        gap: 200px;
    }
    .agotado{
        height: 160vh;
    }
    .home-razzbar{
        height: 160vh;
    }
    .home-bang{
        height: 140vh;
    }
    .home-waspe{
        height: 110vh;
    }
}
@media (min-width: 768px) and (max-width: 1024px){
    .bang-titulo, .vopk-titulo, .razzbar-titulo, .waspe-titulo{
        gap: 100px;
    }
    .agotado{
        height: 120vh;
    }
    .home-vopk{
        height: 80vh;
    }
    .home-razzbar{
        height: 120vh;
    }
    .home-bang{
        height: 140vh;
    }
    .home-waspe{
        height: 110vh;
    }
}
@media (min-width: 1025px) and (max-width: 1400px) and (orientation: landscape){
    .bang-titulo, .vopk-titulo, .waspe-titulo{
        gap: 330px;
    }
    .promos{
        font-size: 20px;
    }
    .razzbar-titulo{
        gap: 320px;
    }
    .home-vopk{
        height: 50vh;
    }
    .home-razzbar{
        height: 120vh;
    }
    .home-bang{
        height: 80vh;
    }
    .home-waspe{
        height: 80vh;
        overflow: hidden;
    }
}
@media (min-width: 1025px) and (max-width: 1400px) and (orientation: portrait){
    .bang-titulo, .vopk-titulo, .waspe-titulo{
        gap: 150px;
    }
    .promos{
        font-size: 20px;
    }
    .razzbar-titulo{
        gap: 150px;
    }
    .home-vopk{
        height: 40vh;
    }
    .home-razzbar{
        height: 120vh;
    }
    .home-bang{
        height: 80vh;
    }
    .home-waspe{
        height: 60vh;
        overflow: hidden;
    }
}