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

@font-face {
    font-family: 'VarsityTeam';
    /* Nombre para usar en el CSS */
    src: url('../font/VarsityTeam-Bold.otf') format('opentype');
    /* Ruta al archivo .otf */
    font-weight: bold;
    /* Ajusta según el estilo de la fuente */
    font-style: normal;
    /* Ajusta si es necesario */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: var(--color-Secundario);
}

h2 {
    color: var(--color-Primario);
    font-family: 'VarsityTeam';
    src: url('../font/VarsityTeam-Bold.otf') format('opentype');
    font-size: 42px;
    text-transform: uppercase;
    user-select: none;
    /* Para navegadores modernos */
    -webkit-user-select: none;
    /* Para Safari */
    -moz-user-select: none;
    /* Para Firefox */
    -ms-user-select: none;
    /* Para Internet Explorer/Edge */
}

h3 {
    color: var(--color-Primario);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

ul {
    text-decoration: none;
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

/* Header */
header {
    background-color: #1d0112;
    padding: 10px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: top 0.3s;
}

header img {
    width: 450px;
    height: auto;
    max-width: 100%;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.cont_res div ul {
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 14px 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 */
    }
}






/* Galeria de productos */
.maingallery {
    position: relative;
    width: 90%;
    height: 500px;
    margin: 0 auto;
}

.gallleryprducts {
    display: flex;
    align-items: center;
}

.gallleryprducts img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallleryprducts img.show {
    opacity: 1;
}

.section-names {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    font-family: 'VarsityTeam', sans-serif;
}

.galeria-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.separator {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}

.galeria-name:hover {
    color: #ccc;
}

/* Media query para ocultar la galería a partir de 992px */
@media (max-width: 992px) {
    .maingallery {
        display: none;
        /* Oculta la galería */
    }
}















/* Estilos para las imágenes de los títulos (siempre visibles) */
.dropdown-item img:first-child {
    width: auto;
    height: 100px;
    /* Ajusta la altura según tus necesidades */
    object-fit: contain;
    margin-bottom: 10px;
    z-index: 3;
    /* Asegura que la imagen del título quede por encima del fondo */
    position: relative;
    /* Siempre visible */
    opacity: 1;
    /* No desaparece */
    transition: none;
    /* Sin transición en hover */
}

/* Mantener las imágenes de los productos con animación */
.producto-img {
    width: 288px;
    height: 174px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: inset(100% 100% 100% 100%);
    z-index: 1;
    /* Imagen del producto por debajo */
    opacity: 0;
    transition: clip-path 0.5s ease, opacity 0.5s ease;
    /* Transición ajustada */
}

/* Fondo negro y centrar el texto */
.dropdown-menu {
    background-color: #1d0112;
    /* Fondo oscuro */
    list-style-type: none;
    pointer-events: none;
    padding: 0;
    border-radius: 0;
    display: none;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-in-out;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    font-family: 'VarsityTeam';
}

.dropdown-menu p {
    color: #b8b8b8;
}

#producto-menu.show {
    display: flex;
    pointer-events: visible;
    flex-direction: row;
    justify-content: center;
    opacity: 1;
    margin-top: 25px;
    width: 1000px;
    z-index: 99;
}

/* Estilos de los cuadros de la barra de productos */
.dropdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 174px;
    background-color: #1d0112;
    position: relative;
    padding: 15px;
    overflow: hidden;
    text-align: center;
    color: white;
    margin: 0 10px;
    border: none;
    /* Eliminar el borde */
    z-index: 2;
    /* Ajustar para evitar superposición indeseada */
}

/* Mantener la imagen del título visible sin cambio */
.dropdown-item img:first-child {
    z-index: 3;
    /* Asegura que el título siempre quede por encima */
    position: relative;
    transition: none;
    /* Sin animación */
}

/* Animar la imagen del producto al hacer hover */
.dropdown-item:hover .producto-img {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    /* Mostrar la imagen */
    transition: clip-path 0.5s ease, opacity 0.5s ease;
    /* Transición más rápida */
}

/* Al salir del hover, animar la imagen inversamente */
.dropdown-item .producto-img.hover-out {
    clip-path: inset(100% 100% 100% 100%);
    opacity: 0;
    /* Ocultar imagen */
    transition: clip-path 0.5s ease, opacity 0.5s ease;
    /* Suavizar la salida */
}

/* Fondo semitransparente sobre la imagen del producto */
.dropdown-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 1, 18, 0.5);
    /* Color de fondo con 50% de opacidad */
    z-index: 2;
    /* Fondo detrás del título y delante de la imagen del producto */
    opacity: 0;
    /* Inicialmente invisible */
    transition: opacity 0.5s ease;
    /* Transición más rápida */
}

/* Mostrar el fondo semitransparente al hacer hover */
.dropdown-item:hover::after {
    opacity: 1;
}

.li_productos {
    opacity: 0;
}

/* Animación de entrada desde el centro */
@keyframes square-in-center {
    from {
        clip-path: inset(100% 100% 100% 100%);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

/* Animación de salida hacia el centro */
@keyframes square-out-center {
    from {
        clip-path: inset(0 0 0 0);
    }

    to {
        clip-path: inset(100% 100% 100% 100%);
    }
}



/* Video TODO PARRILLA */

.videos_carru {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 9;
}

.video_fondo {
    width: 100%;
    height: 100vh;
}

.carousel-inner,
.carousel-item {
    height: 100%;
    position: relative;
}

.carousel-item2 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.carousel-item2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Negro con 80% de opacidad */
    z-index: 1;
    /* Asegúrate de que esté por encima del video */
}



@media (max-width: 768px) {
    .carousel-item2 {
        background: url('img/t1.jpg') no-repeat center center;
        background-size: cover;
    }

}




.descripcion {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(87, 87, 87);
    text-align: center;
    padding: 50px 20px;
    font-size: 24px;
    color: white;
}




.content1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 1;
}

.logo-parrilla {
    width: 70%;
    /* Ancho relativo al contenedor */
    max-width: 700px;
    /* Ancho máximo para pantallas grandes */
    min-width: 200px;
    /* Ancho mínimo para que no se haga muy pequeña */
    height: auto;
    /* Mantiene la proporción */
}

.logo-parrilla2 {
    width: 60%;
    /* Ancho relativo al contenedor */
    max-width: 1100px;
    /* Ancho máximo para pantallas grandes */
    min-width: 350px;
    /* Ancho mínimo para que no se haga muy pequeña */
    height: auto;
    /* Mantiene la proporción */
}



/* CONTENEDORES */

.conteinerinfo {
    width: 1920px;
    height: auto;
    margin-bottom: 150px;
    margin-top: 150px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    user-select: none;
    /* Para navegadores modernos */
    -webkit-user-select: none;
    /* Para Safari */
    -moz-user-select: none;
    /* Para Firefox */
    -ms-user-select: none;
    /* Para Internet Explorer/Edge */
}

.conteinertienda {
    width: 100%;
}

.conteinerinfo.visible,
.conteinertienda.visible {
    opacity: 1;
    transform: translateY(0);
}

.row {
    justify-content: space-between;
    align-items: center;
}

.conteinerinfo h2,
.conteinerinfo li,
.conteinerinfo h3 {
    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 */
}

.conteinerinfo h2 {
    font-size: 36px;
    text-align: center;
    font-family: 'VarsityTeam', sans-serif;
}

.conteinerinfo li {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.cont_info {
    justify-content: center;
}




.centralcontainer {
    height: auto;
    margin-bottom: 150px;
    margin-top: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    /* Para navegadores modernos */
    -webkit-user-select: none;
    /* Para Safari */
    -moz-user-select: none;
    /* Para Firefox */
    -ms-user-select: none;
    /* Para Internet Explorer/Edge */
}

.centralcontent {
    max-width: 1000px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.centralcontainer.visible .centralcontent {
    opacity: 1;
    transform: translateY(0);
}

.centralcontent h2 {
    font-size: 2rem;
    font-family: 'VarsityTeam', sans-serif;
    margin-bottom: 10px;
}

.centralcontent p {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.centralcontent strong {
    font-size: 1rem;
    line-height: 1.5;
}

/* Media query para pantallas de hasta 990px */
@media (max-width: 990px) {
    .centralcontainer {
        flex-direction: column;
        width: 100%;
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .centralcontent h2 {
        font-size: 1.9rem;
    }

    .centralcontent p {
        font-size: 1rem;
        padding: 10px;
    }

    .centralcontent {
        padding: 20px;
    }
}










/* Tienda */

.tienda-informacion {
    max-width: 1920px;
    /* Ancho deseado */
    height: auto;
    margin-right: 100px;
    margin-left: 100px;
    margin-bottom: 150px;
    margin-top: 150px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    display: flex;
    /* Usar flexbox para disposición */
    text-align: center;
    align-items: center;
    justify-content: center;
}

.fila-informacion {
    display: flex;
    /* Mantener las columnas una al lado de la otra */
    justify-content: space-between;
    /* Espaciado entre columnas */
    width: 100%;
    /* Ancho completo para la fila */
}

.columna-informacion {
    width: 50%;
    margin: 20px;
}

.tienda-informacion.visible,
.columna-informacion.visible {
    opacity: 1;
    transform: translateY(0);
}

.tienda-informacion h2,
.tienda-informacion p,
.tienda-informacion li,
.tienda-informacion h3 {
    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 */
}

.tienda-informacion h2 {
    font-size: 36px;
    font-family: 'VarsityTeam', sans-serif;
    border-bottom: 3px solid var(--color-Negro);
    display: inline-flex;
    /* Esto hace que el borde se ajuste al tamaño del contenido */
}

.tienda-informacion p {
    font-style: italic;
}

.tienda-informacion li {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.infocaja {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 992px) {
    .fila-informacion {
        flex-direction: column;
        /* Cambiar a columna en pantallas pequeñas */
        align-items: center;
        /* Centrar el contenido */
    }

    .columna-informacion {
        width: 100%;
        /* Hacer las columnas 100% de ancho en pantallas pequeñas */
        margin-bottom: 20px;
        /* Espaciado entre las cajas */
    }

    .margen-abajo {
        margin-bottom: 20px;
        /* Margen inferior para separación */
    }

    .margen-arriba {
        margin-top: 20px;
        /* Margen superior para separación */
    }
}




































/* Galeria de productos */






.separator {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}




/* Contenedor Tienda */


.tienda {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(rgba(2, 0, 36, 0) 0%, rgba(0, 0, 0, 1) 100%), url('../img/t1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 400px;
    user-select: none;
    /* Para navegadores modernos */
    -webkit-user-select: none;
    /* Para Safari */
    -moz-user-select: none;
    /* Para Firefox */
    -ms-user-select: none;
    /* Para Internet Explorer/Edge */
}

.tienda h2 {
    font-family: 'VarsityTeam', sans-serif;
    font-size: 3rem;
    color: white;
}

.tienda p {
    font-size: 1.2rem;
    color: white;
    font-style: italic;
}

/* MAPA */
.contenedor-mapa {
    width: 90%;
    margin: 0 auto;
    z-index: 999999999;
    margin-bottom: -105px;
}


.mapa {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-top: 1px solid var(--color-Primario);
}

.mapa iframe {
    width: 1820px;
    height: 500px;
    position: relative;
    transform: translateY(-60px);
    border: none;
    border: 4px solid var(--color-Primario);
}


/* boton up */
#scroll_btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-Primario);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 15px;
    z-index: 9;
}

#scroll_btn p {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 3px 0;
}

#scroll_btn:hover {
    background-color: #41092b;

}



@-webkit-keyframes come-in {
    0% {
        -webkit-transform: translatey(100px);
        transform: translatey(100px);
        opacity: 0;
    }

    30% {
        -webkit-transform: translateX(-50px) scale(0.4);
        transform: translateX(-50px) scale(0.4);
    }

    70% {
        -webkit-transform: translateX(0px) scale(1.2);
        transform: translateX(0px) scale(1.2);
    }

    100% {
        -webkit-transform: translatey(0px) scale(1);
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}

@keyframes come-in {
    0% {
        -webkit-transform: translatey(100px);
        transform: translatey(100px);
        opacity: 0;
    }

    30% {
        -webkit-transform: translateX(-50px) scale(0.4);
        transform: translateX(-50px) scale(0.4);
    }

    70% {
        -webkit-transform: translateX(0px) scale(1.2);
        transform: translateX(0px) scale(1.2);
    }

    100% {
        -webkit-transform: translatey(0px) scale(1);
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}



/* Estilo para el contenedor flotante */
.floating-container {
    z-index: 9;
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    margin: 35px 25px;
    ;
}

.floating-button img.icono-menu {
    width: 25px; /* Tamaño del ícono */
    height: 25px;
    display: block;
    margin: auto;
}

/* Cambios de tamaño en el hover */
.floating-container:hover {
    height: 340px;
}

/* Ajustes en la animación de los elementos flotantes */
.floating-container:hover .floating-button {
    transform: translateY(5px);
    transition: all 0.3s;
}

/* Animaciones de aparición de los elementos flotantes */
.floating-container:hover .element-container .float-element:nth-child(1) {
    animation: come-in 0.4s forwards 0.2s;
}

.floating-container:hover .element-container .float-element:nth-child(2) {
    animation: come-in 0.4s forwards 0.4s;
}

.floating-container:hover .element-container .float-element:nth-child(3) {
    animation: come-in 0.4s forwards 0.6s;
}

.floating-container:hover .element-container .float-element:nth-child(4) {
    animation: come-in 0.4s forwards 0.8s;
}

/* Estilo para el botón flotante */
.floating-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--color-Primario);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    color: white;
    display: flex;
    /* Cambiado */
    justify-content: center;
    /* Cambiado */
    align-items: center;
    /* Cambiado */
    font-size: 30px;
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s;
}

img.icono-menu2 {
    width: 25px; /* Tamaño del ícono */
    height: 25px;
    display: block;
    margin: auto;
}

.float-element {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 15px auto;
    z-index: 0;
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.float-element img {
    width: 24px;
    height: 24px;
}

.float-element:nth-child(1) {
    background: #cfe1ff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.float-element:nth-child(2) {
    background-color: #ffe600;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.float-element:nth-child(3) {
    background: #009726;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.float-element:nth-child(4) {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}



/* Medias */

@media screen and (max-width: 990px) {
    .navbar-toggler {
        margin-left: auto;
    }

    .logo_img {
        display: none;
    }

    .logo_res {
        display: inline-block;
        margin: 0;
        padding: 0;
    }

    .logo_res img {
        width: 80%;
    }

    .carousel {
        height: 530px;
    }

    .content1 h2 {
        font-size: 1.5rem;
    }

    .conteinerinfo {
        display: flex;
        margin-bottom: 30px;
        margin-top: 80px;
        flex-direction: column;
        width: 100%;
    }

    .conteinerinfo h2 {
        font-size: 1.9rem;
    }

    .conteinerinfo p {
        font-size: 1rem;
        padding: 10px;
    }

    .conteinerinfo .col-lg-5 {
        padding: 20px;
    }






    .separator {
        display: none;
    }

    .barba_galeria {
        height: 220px;
        width: 100%;
        margin: 0;
    }

    .qbo_galeria,
    .gas_galeria,
    .herrajes_galeria {
        background-repeat: no-repeat;
        background-attachment: fixed;
        width: 100%;
        margin: 0;
    }

    .barba_galeria {
        background-image: url('/img/galeria1.jpg');
        height: 200px;
        background-position: 45% 40%;
    }

    .qbo_galeria {
        background-image: url('/img/galeria2.jpg');
        height: 200px;
        background-position: center center;
    }

    .gas_galeria {
        background-image: url('/img/galeria3.jpg');
        height: 200px;
        background-position: 65% 25%;
    }

    .herrajes_galeria {
        background-image: url('/img/galeria4.jpg');
        height: 220px;
        background-position: center center;
    }

    .col-12 {
        width: 50%;
    }


    .dropdown .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #producto-menu.show {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 20px;
        opacity: 1;
        width: auto;
    }

    .cont_desplegable {
        width: 100%;
    }

    .navbar-collapse {
        max-height: 900px;
        overflow-y: scroll;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .navbar-collapse li {
        margin-top: 15px;
    }

    .navbar-collapse::-webkit-scrollbar {
        width: 0;
    }

    .navbar-collapse {
        scrollbar-width: none;
    }
}

@media screen and (max-width: 550px) {
    .col-12 {
        width: 100%;
    }

    .tienda-informacion {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .contenedor-mapa {
        margin-bottom: 30px;
    }

    .videos_carru {
        height: 100vh;
    }

    .floating-container {
        width: 80px;
        height: 80px;
    }

    .centralcontainer {
        flex-direction: column;
        width: 100%;
        margin-top: 5px;
        margin-bottom: 50px;
    }

}

@media screen and (min-width: 990px) {
    .cont_res .logo_res {
        display: none;
    }


    .cont_res div ul {
        list-style-type: none;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .dropdown-menu {
        height: 250px;
    }

}

@media screen and (max-width: 990px) {
    .li_productos {
        opacity: 1;
    }

    .navbar-nav li,
    .li_productos {
        text-align: left;
        font-family: 'VarsityTeam';
        text-transform: uppercase;
        color: white;
        margin-bottom: 15px;

    }

    .dropdown-item {
        display: none;
    }

    .dropdown-menu p,
    .dropdown-menu li {
        margin: 0;
    }

    ;

    .dropdown-menu {
        box-shadow: none;
        /* Sin sombra */
        border: none;
        /* Sin borde */
    }
}

@media screen and (max-width: 768px) {

    .navbar-collapse {
        overflow-y: scroll;
    }

}

@media screen and (min-width: 990px) and (max-width: 1200px) {
    #producto-menu.show {
        width: 800px;
    }
}









/* Estilos generales para el footer */
footer {
    background-color: #1d0112;
}

/* Footer arriba */
.footer-arriba {
    color: #fff;
    padding: 60px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    padding-left: 0;
    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 */
}

.footer-section li {
    color: #999999;
    list-style: none;
}

.footer-section a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: #999999;
    display: block;
    /* Para asegurar que se vea en bloque en móviles */
}

.footer-section a:hover {
    color: #ffffff;
}

/* Media queries */

/* Pantallas grandes (1200px o menos) */
@media (max-width: 1200px) {
    .footer-arriba {
        padding: 60px;
        /* Mantén un buen padding en pantallas más grandes */
    }

    .footer-section {
        text-align: left;
        /* Mantén el texto alineado a la izquierda */
    }

    .footer-section h2 {
        font-size: 22px;
        /* Aumenta el tamaño de los títulos */
    }

    .footer-section a {
        font-size: 18px;
        /* Aumenta el tamaño de los enlaces */
    }
}

/* Pantallas medianas (1024px o menos) */
@media (max-width: 1024px) {
    .footer-arriba {
        padding: 50px;
        /* Ajusta el padding para pantallas más grandes */
    }

    .footer-section {
        text-align: center;
        padding: 10px;
    }

    .footer-section h2 {
        font-size: 24px;
        /* Tamaño ligeramente más grande */
    }

    .footer-section a {
        font-size: 16px;
        /* Texto un poco más grande */
    }
}

/* Pantallas pequeñas (830px o menos) */
@media (max-width: 830px) {
    .footer-arriba {
        padding: 30px;
        /* Reduce padding para móviles */
    }

    .footer-section {
        text-align: center;
        /* Centra el texto en dispositivos pequeños */
    }

    .footer-logo {
        flex-direction: column;
        /* Alinea verticalmente los elementos */
    }


}

/* Móviles muy pequeños (576px o menos) */
@media (max-width: 576px) {
    .footer-arriba {
        padding: 20px;
        /* Aún menos padding para móviles más pequeños */
    }

    .footer-section h2 {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.5;
        padding-bottom: 12px;
        text-transform: uppercase;
    }

    .footer-section a {
        font-size: 12px;
        color: #969696;
        line-height: 1.5;
        padding: 5px 0px;
    }

    .footer-section li {
        font-size: 12px;
        color: #969696;
        line-height: 1.5;
        padding: 5px 0px;
    }
}

/* Footer abajo */
.footer-abajo {
    background-color: #1d0112;
    /* Color de fondo especificado */
    color: white;
    /* Color de la tipografía especificado */
    padding: 30px 20px;
}

.footer-logo {
    display: flex;
    justify-content: space-between;
    /* Distribuye los elementos a lo largo del eje horizontal */
    align-items: center;
    /* Centra los elementos verticalmente */
    flex-wrap: wrap;
    /* Hace que los elementos se acomoden en múltiples líneas si es necesario */
    padding: 0 90px;
    /* Usa padding lateral uniforme */
}

.footer-logo strong {
    margin: 0;
    font-size: 14px;
    user-select: none;
    /* Para navegadores modernos */
    -webkit-user-select: none;
    /* Para Safari */
    -moz-user-select: none;
    /* Para Firefox */
    -ms-user-select: none;
    /* Para Internet Explorer/Edge */
}

.footer-logo img {
    height: auto;
    /* Mantiene la proporción original de la imagen */
    max-width: 350px;
    /* Tamaño máximo que deseas para el logo */
    width: 100%;
    /* Asegura que la imagen se adapte al contenedor sin estirarse */
}

.footer-logo a.ma img {
    max-width: 150px;
    /* Tamaño más grande para el logo de la derecha */
}

/* Media queries para footer abajo */

/* Pantallas de tamaño medio (920px o menos) */
@media (max-width: 920px) {
    .footer-logo {
        flex-direction: column;
        /* Cambia a columna en pantallas pequeñas */
        text-align: center;
        /* Centra el texto */
    }

    .footer-logo img {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .footer-logo a.ma img {
        height: 25px;
        /* Ajusta el tamaño de esta imagen como prefieras */
        margin: 0;
    }

    .footer-logo strong {
        margin: 0;
        font-size: 12px;
        /* Ajusta el tamaño del texto si es necesario */
    }
}

/* Pantallas pequeñas (520px o menos) */
@media (max-width: 520px) {
    .footer-logo img {
        max-width: 800px;
        /* Ajusta el tamaño del logo de "Todo Parrillas" a un tamaño más pequeño */
        height: auto;
        /* Mantiene la proporción original de la imagen */
    }

    .footer-logo strong {
        font-size: 10px;
        /* Ajusta el tamaño del texto si es necesario */
    }

    .footer-logo a.ma img {
        max-width: 100px;
        height: auto;
        /* Mantiene la proporción original de la imagen */
        margin: 0;
    }
}