* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    /* Para evitar la selección de texto */
    -webkit-user-select: none;
    /* Para Safari */
    -moz-user-select: none;
    /* Para Firefox */
    -ms-user-select: none;
    /* Para Internet Explorer */
}

body {
    background-color: var(--color-PrimarioOscuro);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.textov p {
    color: #FFF5D7;
}








/* contenedor video herrajes */

.container-video {
    margin: 4vh auto;
    position: relative;
    width: 100%;
    height: 285px; /* Mantiene la altura fija del contenedor */
}

.videomenu {
    display: flex;
    justify-content: center; /* Centra el video horizontalmente */
    align-items: center;
    width: 100%; /* Hace que el contenedor ocupe todo el ancho */
    height: 100%; /* Ocupa toda la altura del contenedor */
}

.wrapper-video {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%; /* Hace que el video ocupe todo el ancho */
    height: 100%; /* Mantiene la altura fija */
}

.wrapper-video video {
    width: 100%;
    height: 100%; /* Ocupa toda la altura disponible */
    object-fit: cover; /* Asegura que el video cubra todo el contenedor */
}

/* prueba */

img.icono-menu2 {
    width: 25px;
    height: 25px;
    display: block;
    margin: auto;
}

img.icono-menu {
    width: 25px;
    height: 25px;
    display: block;
    margin: auto;
}




/* texto principal */

.centralcontainer2 {
    height: auto;
    margin-bottom: 150px;
    margin-top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centralcontent2 {
    max-width: 1200px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    color: #FFF5D7;;
}

.centralcontainer2.visible .centralcontent2 {
    opacity: 1;
    transform: translateY(0);
}

.centralcontent2 h2 {
    font-size: 2rem;
    font-family: 'VarsityTeam', sans-serif;
    margin-bottom: 10px;
}

.centralcontent2 .cursiva {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
}


.centralcontent2 p {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.centralcontent2 strong {
    font-size: 1rem;
    line-height: 1.5;
}

/* Media query para pantallas de hasta 990px */
@media (max-width: 990px) {
    .centralcontainer2 {
        flex-direction: column;
        width: 100%;
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .centralcontent2 h2 {
        font-size: 1.9rem;
    }

    .centralcontent2 p {
        font-size: 1rem;
        padding: 10px;
    }

    .centralcontent2 {
        padding: 20px;
    }
}








/* Galeria flecha */

.arrow {
    position: absolute;
    top: 90%; /* Ajusta este valor para mover la flecha más abajo sobre el video */
    left: 50%;
    transform: translate(-50%, -50%); /* Sin rotación inicial */
    cursor: pointer;
    display: none; /* Oculta por defecto */
    z-index: 10; /* Asegúrate de que esté por encima del video */
}

.arrow span {
    display: block;
    width: 0; /* Cambiado para que no tengan ancho */
    height: 0; /* Cambiado para que no tengan altura */
    border-left: 12px solid transparent; /* Cambio para bordes transparentes */
    border-right: 12px solid transparent; /* Cambio para bordes transparentes */
    border-top: 15px solid white; /* Este es el borde que crea la flecha hacia abajo */
    margin: -10px 0; /* Ajuste de margen */
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: translateY(-10px); /* Movimiento hacia arriba */
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(10px); /* Movimiento hacia abajo */
    }
}

/* Media Query para pantallas de 550px o menos */
@media (max-width: 550px) {
    .arrow {
        display: block; /* Muestra la flecha en pantallas pequeñas */
    }
}










/* Estilos básicos para la sección */
.bloque-contenido {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px;
    margin-bottom: 90px;
}

/* Contenedor principal */
.bloque-principal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1100px;
    gap: 40px;
}

/* Estilos para el contenido */
.bloque-carruInfo {
    display: flex;
    flex-direction: row;
    gap: 60px;
    width: 100%;
}

.texto {
    padding: 20px;
    padding-left: 0;
    padding-right: 0;
}

.texto h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.texto p {
    font-size: 1rem;
    color: #FFF5D7;
    margin-bottom: 30px;
    max-width: 1200px;
}

.texto .cursiva {
    font-style: italic;
}

/* Estilo para invertir Bloque 2 */
.bloque-invertido .bloque-carruInfo {
    flex-direction: row-reverse;
}

.carru_cont_producto2 {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 400px;
    border: 3px solid #e0d19c;
    margin-top: 28px;
}

@media (max-width: 1160px) { 
    .texto p {
        font-size: 1rem;
        color: #FFF5D7;
        margin-bottom: 20px;
        max-width: 900px;
    }
}




/* Media query para pantallas pequeñas */
@media (max-width: 992px) {
    .bloque-principal {
        flex-direction: column;
        align-items: center;
    }

    /* Asegura que se aplique flex-direction: column a todos los .bloque-carruInfo */
    .bloque-carruInfo {
        flex-direction: column !important;
        align-items: center;
    }

    .carru_cont_producto2 {
        aspect-ratio: 1 / 1; /* Mantiene la proporción cuadrada */
        width: 100%;
        max-width: 450px; /* Aumentar para hacer el cuadro más cuadrado */
        height: 400px; /* Definir altura para que sea más cuadrado */
        border: 3px solid #e0d19c;
    }
    
    .texto {
        padding: 20px;
        max-width: 650px; /* Restringir el ancho del texto para que sea más pequeño */
        text-align: center; /* Alineación del texto */
    }
}

@media screen and (max-width: 580px) {
    .bloque-principal {
        flex-direction: column; /* Asegúrate de que sea en columna */
        align-items: center; /* Centrar elementos */
    }

    .carru_cont_producto2 {
        width: 100%; /* Ajustar el ancho al 100% */
        max-width: 300px; /* Hacerlo más pequeño */
        height: 300px; /* Ajustar la altura para mantener la proporción cuadrada */
    }

    .texto {
        max-width: 350px; /* Restringir el ancho del texto */
        font-size: 1rem; /* Hacer el texto más pequeño */
        padding: 10px; /* Ajustar el padding */
    }

    .texto h1 {
        font-size: 1.5rem; /* Reducir tamaño de los encabezados */
    }

    .texto p {
        font-size: 1rem; /* Hacer el texto del párrafo más pequeño */
        margin-bottom: 30px; /* Reducir el margen inferior */
    }
}






















/* cartas */
.cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 110px;
    max-width: 1200px;
    margin: 50px auto 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.card {
    width: calc(100% / 5 - 10px); /* Ancho adaptable con espacio entre tarjetas */
    background-color: #e0d19c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.cards a {
    text-decoration: none;
}

.card__img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 24px;
    background-color: rgba(238, 221, 162, 0.9); /* Fondo con opacidad mejorada */
    color: #300620; /* Color de texto para mejor contraste */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: background-color 0.4s ease;
}

.card__title {
    margin-top: 5px;
    font-family: 'VarsityTeam';
    font-size: 24px;
    font-weight: bold;
}

.card__category {
    font-family: 'VarsityTeam';
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Efecto hover */
.card:hover {
    box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05); /* Escala más sutil */
}

.card:hover .card__img {
    transform: scale(1.1); /* Suaviza el efecto de zoom */
    filter: brightness(0.8); /* Oscurece la imagen en hover */
}






/* Distribución principal */
.divisiones {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.contenedor-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    gap: 40px;
    margin-bottom: 100px;
}

.cont_p_reverse {
    flex-direction: row-reverse;
}

.link_precio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}



.precio-modelo {
    font-size: 40px;
    text-align: center;
    color: #e0d19c;
    margin: 0;
    font-family: 'VarsityTeam', sans-serif;
    letter-spacing: 2px;
}

.precio-modelo p {
    margin: 0;
}

/* Tabla */
.cont_tabla {
    font-family: 'VarsityTeam', sans-serif;
    text-align: center;
    width: 600px;
}

.cont_tabla h2 {
    font-size: 3em;
    color: #e0d19c;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.cont_tabla p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    margin-top: 1rem;
    color: #FFF5D7;
    letter-spacing: 2px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.cont_tabla strong {
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    margin-top: 1rem;
    color: #FFF5D7;
    letter-spacing: 2px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}


.table-responsive {
    display: flex;
    justify-content: center;
}

table {
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    background-color: #2b0220;
    border: 1px solid #4d0d3b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

th,
td {
    letter-spacing: 1px;
    user-select: none;
    padding: 18px;
    font-size: 1.3em;
    color: #e0d19c;
    border-bottom: 1px solid #4d0d3b;
    transition: background-color 0.3s ease, color 0.3s ease;
}

th {
    background-color: #4d0d3b;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid #e0d19c;
}

td.titulo_td {
    font-weight: bold;
    background-color: #381630;
}

tr:hover td {
    background-color: #4d0d3b;
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

table tr:last-child td {
    border-bottom: none;
}

/* Carrusel */
.cont_carruInfo,
.cont_ModeloTabla {
    display: flex;
    flex-direction: column;
}

.con_carru,
.cont_carru2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carru_cont_producto {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 400px;
    border: 3px solid #e0d19c;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}



/* Estilo para la lista del kit */
.lista_kit {
    text-align: left;
    color: #e0d19c;
    list-style-type: none;
    /* Elimina las viñetas predeterminadas */
    padding: 0;
    font-size: 1.4em;
    margin-top: 25px;
}

.lista_kit li {
    margin-bottom: 5px;
}

/* Personalizar el símbolo de la lista */
.lista_kit li::before {
    content: "- ";
    /* Añade un guion antes de cada elemento */
    color: #e0d19c;
    /* Mantiene el mismo color */
}





/* Títulos */
.divisiones h1 h2 {
    align-items: flex-start;
}

h1,
h2 {
    font-family: 'VarsityTeam';
    src: url('../font/VarsityTeam-Bold.otf') format('opentype');
    color: var(--color-SecundarioOscuro);
    text-transform: uppercase;
     text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* Modelo y botón debajo del carrusel */
.cont_ModeloTabla {
    margin-top: 20px;
    width: 100%;
}

.modelos-producto .modelo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

.modelos-producto .modelo .info-modelo {
    display: flex;
    flex-direction: column;
}

.nombre-modelo {
    font-size: 30px;
    color: var(--color-SecundarioOscuro);
    margin: 0 0 5px;
}



/* Estilos para btn-tienda2 */
.btn-tienda2 {
    display: inline-flex;
    align-items: center;
    padding: 15px 20px;
    font-size: 1em;
    color: #FFF;
    background-color: #25D366;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

/* Imagen del logo de WhatsApp */
.btn-tienda2 .logo-icon {
    width: 24px; /* Ajusta el tamaño de la imagen */
    height: 24px;
    margin-right: 10px; /* Espacio entre la imagen y el texto */
}

.btn-tienda2:hover {
    background-color: #20b858;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.45);
}

.btn-tienda2:focus {
    outline: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}




.btn-tienda {
    background-color: var(--color-SecundarioOscuro);
    color: #000000;
    padding: 6px 12px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 0;
    margin-bottom: 1rem;
    display: inline-block;
    text-align: center;
    border-radius: 4px; 
    font-size: 0.95rem; 
}


.btn-tienda:hover {
    background-color: var(--color-SecundarioOscuro);
}

/* Características y listas */
.cont_caracteristicas li,
#accesorios_li li {
    line-height: 2;
}

#caracteristicas,
#accesorios_li {
    list-style-type: disc;
    margin-bottom: 50px;
    padding-left: 20px;
}

#caracteristicas li::marker,
#accesorios_li li::marker {
    color: var(--color-SecundarioOscuro);
}

/* Información adicional */
.info-cuotas {
    font-size: 16px;
    color: #ffffff;
    margin-top: 30px;
    text-align: left;
}

.contQbo1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background-image: linear-gradient(rgba(2, 0, 36, 0) 0%, rgba(0, 0, 0, 1) 100%), url('../img/f1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 400px;
    user-select: none;
    /* Evita la selección de texto */
    -webkit-user-select: none;
    /* Para Safari */
    -moz-user-select: none;
    /* Para Firefox */
    -ms-user-select: none;
    /* Para Internet Explorer */
}

.contQbo1 p {
    font-size: 1.2rem;
    color: white;
    font-style: italic;
}

/* Ajustes de tamaño y disposición para pantallas más pequeñas */


@media (max-width: 1450px) {
    .link_precio {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1px; /* espacio mínimo */
        margin-top: 10px;
    }

    .precio-modelo {
        font-size: 3rem;
        margin-bottom: 0;
    }

    .btn-tienda {
        width: 100%;
        max-width: 260px;
        margin-top: 1px;
        margin-bottom: 0; /* clave */
        padding: 14px 14px;
    border-radius: 8px;
    }
}



@media (max-width: 768px) {
    .link_precio {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .precio-modelo {
        font-size: 3rem;
    }

    .btn-tienda {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .precio-modelo {
        font-size: 26px;
    }

    .btn-tienda {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}




@media screen and (max-width: 1200px) {
    .card {
        width: 20%;

    }
}

@media screen and (max-width: 1000px) {
    .contenedor-principal {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .cards {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 70px;
        max-width: 1200px;
        margin: 50px auto 0;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .card {
        width: 30%;
        background-color: #e0d19c;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        margin-bottom: 30px;
        border: 2px solid transparent;
    }

    .contenedor-principal {
        flex-direction: column;
    }

    .carru_cont_producto {
        max-width: 100%;
    }

    .divisiones {
        flex-direction: column;
    }

    .cont_tabla {
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 580px) {
    .card {
        height: 150px;
        width: 40%;
        margin: 7px;
    }

    .card__info {
        padding: 5px;
        /* Ajusta el relleno en pantallas pequeñas */
        font-size: 14px;
        /* Ajusta el tamaño de fuente para pantallas pequeñas */
    }

    .cards {
        gap: 0;
    }

    .carru_cont_producto {
        aspect-ratio: 1 / 1;
        height: 100%;
        max-width: 250px;
        border: 3px solid #e0d19c;
    }

    .carru_cont_img {
        width: 320px;
        height: 320px;
    }

/*
    .precio-modelo {
        font-size: 1.5rem;
    }
*/
    .cont_tabla h2 {
        font-size: 2rem;
    }

    .cont_tabla tr {
        font-size: 10px;
    }
}

@media screen and (max-width: 410px) {
.cont_tabla tr {
    font-size: 8px;
}
}