/* COLORES USADOS 
Amarillo: 
#f2e01a
rgb(242, 224, 26) 

Negro mate:
#272626
rgb(39, 38, 38)

Gris claro btn catalogo:
#d9d9d9
rgb(217, 217, 217)
*/

@font-face {
    font-family: 'guibo';
    src: url('fuentes/Obrazec.otf');
}

@font-face {
    font-family: 'montserrat';
    src: url('fuentes/Montserrat-Regular.ttf');
}

.font-montse{
    font-family: 'Montserrat';
}

.font-guibo{
    font-family: 'guibo';
}

.logo-portada {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-portada img {
    max-width: 650px;
    min-width: 100px;
}

.btn-amarillo {
    background-color: rgb(242, 224, 26);
    border-radius: 10px;
    color: white;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn-amarillo:hover {
    background-color: rgb(39, 38, 38);
    color: rgb(242, 224, 26);
}

.btn-filtro-catalogo {
    color: #272626;
    background-color: #d9d9d9;
    border-radius: 10px;
    font-weight: bold;
    /* padding: 0 15px; */
    width: 100%;
}

.btn-filtro-catalogo:hover {
    background-color: rgb(242, 224, 26);
    color: white;
}

.btn-filtro-catalogo-res {
    color: #272626;
    background-color: rgb(242, 224, 26);
    font-weight: bold;
    width: 100%;
}

.btn-xurban {
    color: white;
    background-color: #ecbf2c;
    border-radius: 10px;
    font-weight: bold;
    width: 100%;
}

.section-banner-wa{
    padding: 50px 120px;
    background-color: rgb(39, 38, 38);
    color: white;
    margin: 0;
}

.btn-wa-guibo{
    background-color: rgb(242, 224, 26);
    color: rgb(39, 38, 38);
    padding: 20px 40px;
    font-size: 25px;
}

.btn-wa-guibo:hover{
    background-color: rgb(211, 195, 15);
    color: rgb(39, 38, 38);
}

.box {
    /* Margen que le doy a las cajas del index para que quede todo centrado.  */
    width: auto;
    margin: 0 9rem;
}

.titulo-si {
    /* titulo con efecto subrayado a la izquierda  */
    position: relative;
    font-family: 'guibo';
    font-size: 3em;
}

.titulo-si:after {
    content: "";
    position: absolute;
    background-color: rgb(242, 224, 26);
    height: 4px;
    width: 6rem;
    bottom: -10px;
    left: 0;
    border-radius: 5px;
}

.titulo-sc {
    /* titulo con efecto subrayado al centro  */
    font-family: 'guibo';
    position: relative;
    font-size: 3em;
}

.titulo-sc:after {
    content: "";
    position: absolute;
    background-color: rgb(242, 224, 26);
    height: 4px;
    width: 6rem;
    bottom: -10px;
    left: 33%;
    border-radius: 5px;
}

/* INICIO INDEX  */

/* #btn-menu-resp:hover span{
    transition: all .2s;
    transform: rotateX(180deg);
} */

.menu-guibo {
    /* margin-top: calc(100vh - 88px); */
    background-color: transparent;
    background-image: linear-gradient( 195deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.45), rgba(242, 224, 26, 0.25)) !important;
    padding-right: 100px;
}

.item-activo {
    color: rgb(242, 224, 26) !important;
    font-weight: bold;
}

.item-menu {
    color: white;
    /* font-weight: bold; */
}

.item-menu:hover {
    color: rgb(192, 188, 188);
    /* color: rgba(250, 171, 50, 0.8); */
}

.item-menu:focus {
    color: rgb(242, 224, 26) !important;
    font-weight: bold;
}

.portada-index {
    height: 100vh;
    /* width: 100% ; */
    /* background-color: aqua; */
    background-image: url("../img/index/portada.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.portada-index p {
    font-size: 2.4rem;
    color: white;
    backdrop-filter: blur(15px);
    padding: 0 15px;
    border-radius: 5px;
}

.portada-index strong {
    font-size: 4rem;
    color: white;
}

.qs-index {
    background-image: url('../img/index/patron-guibo-contenedor.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.qs-index>div {
    /* height: 800px; */
}

.texto-qs {
    font-size: 1.2rem;
    text-indent: 1em;
}

.sec-contacto-index{
    overflow: hidden;
}

.filtro-dropdown-catalogo {
    display: none;
    width: 80%;
}

.lista-filtro-catalogo {
    width: 80%;
}

.btn-card-producto {
    color: black;
    background-color: rgb(242, 224, 26);
}

.btn-card-producto:hover {
    background-color: white;
}

.footer-index {
    background-color: #272626;
}

.footer-index a {
    margin-top: 20px;
    margin-bottom: 20px;
}

.btns-footer {
    color: rgb(242, 224, 26);
    background-color: white;
    border-radius: 50%;
    font-size: 1.7rem;
    padding: 15px 20px;
}

.btns-footer:hover {
    background-color: rgb(242, 224, 26);
    color: white;
}

.cuadro-ubicacion {
    height: auto;
    width: 50%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 100px;
    border-radius: 15px;
}

.card-productos {
    /* height: 35rem; */
    border-radius: 15px;
    transition: all 0.25s;
}

.card-productos:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.grecaptcha-badge {
    display: none !important;
}

/* FIN INDEX  */

@media screen and (max-width: 840px) {
    .box {
        margin: 0 3rem;
    }
    .qs-index>div {
        /* height: 100vh; */
    }
    .lista-filtro-catalogo {
        display: none !important;
    }
    .filtro-dropdown-catalogo {
        display: block;
    }
    .cuadro-ubicacion {
        width: 50%;
        bottom: 300px;
    }
    .menu-guibo {
        padding-right: 16px;
    }
}

@media screen and (max-width: 480px) {
    .logo-portada {
        justify-content: left;
    }
    .logo-portada img {
        width: 150px;
    }
    .box {
        margin: 0 1.5rem;
    }
    .qs-index>div {
        /* height: auto; */
        /* padding: 0 10px; */
    }
    .cuadro-ubicacion {
        width: 90%;
        bottom: 350px;
    }
    .section-banner-wa{
        text-align: center;
        padding: 50px 20px;
    }
}