* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Amiri';
  }
  
.nav{
background: linear-gradient(180deg, rgba(215, 191, 167, 1) 41%, rgba(159, 121, 96, 1) 100%);
    --img1:scale(0);
    --img2:scale(1);
    height: auto;
   
}
.nav:has(.dropdown:target){
    --img1:scale(1);
    --img2:scale(0);
    --clip:inset(0 0 0 0);
}


.nav__container{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 85% auto;
    grid-template-rows: auto;
    grid-template-areas: "title img";
    align-items: center;
    overflow: hidden;
    grid-column-gap: 10px ;

}

.nav__title{
    grid-area: title;
    margin:  5% 0 0 5%;
    padding-right: 80%;
    color: #8e6542;

}



.nav__menu{
   
    text-align: right;
    position: relative;
    z-index: 10;
    grid-area:img;

    transform:var(--img2);
}



.nav__icon{
    width: auto;
    display: block;
}

.nav__menu--second{
    transform: var(--img1);
}

.dropdown{
    position: absolute;
    background: rgb(215,191,167);
background: linear-gradient(180deg, rgba(215,191,167,1) 0%, rgba(159,121,96,1) 100%);
    width: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    align-content: center;
    padding: 1em;
    gap: 1rem;
     border: 1px solid black;
    border-style: dotted ;
    overflow-y: auto;
    clip-path: var(--clip, inset(0 0 100% 0));
    transition: clip-path .7s;
    z-index: 3;

}

.dropdown__list{
    list-style: none;
   

}
.dropdown__link{
    color: black;
    padding: 1em .7em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .6rem;
    position: relative;
    background-color: var(--bg,transparent);
    border-radius: 6px 6px 0 0;
}
.dropdown__list:has(:checked){
    --rows: 1fr;
    --rotate:rotate(180deg);
    --bg:#9f7960;
    border-radius: 15px 15px 0 0;
    
}

.dropdown__check{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}


.dropdown__arrow{ 
    transform: var(--rotate, 0);
    margin-left: auto;

    transition: .2s transform;

}


.dropdown__content{
    display: grid;
    grid-template-rows:var(--rows, 0fr) ;
    transition: .3s grid-template-rows;


}
.dropdown__sub{
overflow: hidden;
    background-color: #d7bfa7;
    border-radius: 0 0 6px 6px ;
    
}


.dropdown__li{
    width: 85%;
    list-style: none;
    text-align: center;
    padding: 5px 0;
    margin: auto;

}

.dropdown__anchor{
    pad: 1em;
    display: block;
    color: #8e6542;
    text-decoration: none;

    
}

.busqueda::placeholder{
    color: #9f7960;
    opacity: 0.7;
    text-align: center;
    font-size: 16px;
}
.busqueda{
    background-color: #F5F3EE;
    padding: 10px;
    width: 85%;
    border-radius: 8px;
    margin: 2% 0;

}

.titulo{
    text-align: center;
    font-size: 35px;
    font-family: 'Amiri';
    color: #d7bfa7;
    margin: 15px;
    font-style: italic;

}
body{
    background: white;

}


.slider-frame{
width: 100%;
height: auto;
overflow: hidden;

}
.slider-frame ul{
    display: flex;
    padding: 0;
    width: 400%;
    animation: slide 16s infinite linear;

}
.slider-frame li{
    list-style: none;
    width: 100%;
}

.slider-frame img{
    width: 100%;
}
@keyframes slide{
 0%{margin-left: 0%;}
 20%{margin-left: 0%;}

 25%{margin-left: -100%;}
 45%{margin-left: -100%;}

 50%{margin-left: -200%;}
 70%{margin-left: -200%;}

 75%{margin-left: -300%;}
 95%{margin-left: -300%;}
}

a {
    color: inherit; /* Hereda el color del elemento padre */
    text-decoration: none; /* Quita el subrayado */
}

.slider{
    width: 90%;
    overflow: hidden;
    display:flex ;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.slider .product{
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    width: 15%;
    box-shadow: 0 0 9px 2px rgb(0, 0, 0, 0.1);
    border: 2px solid #D7BFA7;
    border-radius: 18px;
    margin-right: 1rem;
    transition: 1s;
}

.slider .product img{
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-bottom: 2px solid #D7BFA7;
    border-radius: 16px 16px 0 0;
}


.slider .product .title{
    text-align: center;
    font-family: 'Amiri';
    color: #7D5537;
    font-size: 20px;
    margin: 2vh;
    line-height:1;

}

.slider .product  .information{
    flex-grow: 1; /* Toma el espacio restante disponible */
    display: flex;
    flex-direction: column; /* Mantén el texto arriba y el botón abajo */
    justify-content: space-between; /* Empuja el botón hacia abajo */
    text-align: center;
}

.slider .product .information .button{
    background-color: #D7BFA7;
    font-weight: lighter;
    width: 100%;
    text-align: center;
    padding: 1%;
    text-decoration: none;
    color: #F5F3EE;
    font-size: 20px;
    font-family: 'Amiri';
    border-radius: 0 0 16px 16px;

}
.slider .arrow{
    width: 98%;
    position: absolute;
    justify-content:space-between ;
    display: flex;
    top: 50%;
}

.slider .arrow button{
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #D7BFA7;
    margin: 0 10px;
    color: #D7BFA7;
    background-color: white;
    box-shadow: 0 5px 5px 0;
    cursor: pointer;

}

.clases{
    width: 85%;
    height: auto;
    margin: 10% auto;
    border: 1px solid #EDDFD1;
    border-radius:16px;
    display: flex;
    box-shadow: 8px 7px 7.5px rgba(196, 189, 157, 0.25);
}

.clases img{
    width: 50%;
    min-width: 27vh;
    object-fit: cover;
    border-radius: 0 0 0 16px;
}

h2{
    font-size: 25px;
        font-family: 'Amiri',sans-serif;
        font-weight:normal;
        color: #7D5537;
        margin:5% 0;
}

.clases h4{
    font-size: 13px;
        font-family: 'Arapey',sans-serif;
        font-weight:normal;
        margin: 7%;
        text-align: left;
        color: #7D5537;

    
}
.clases .text{
    padding: 3%;
    background-color:#ede9d140;
    border-radius:0 16px 16px 0 ;
}

.clases h6{
    border: 1px solid #EDDFD1;
    color: #EDDFD1;
    border-radius:16px ;
    
    font-size: 15px;
    font-family:'Amiri' ; 
    font-weight: lighter;   
}


a{
    text-decoration: none;
    color: #EDDFD1;
}










.footpage{
    background-color: #D7BFA7;
}

.instagram{     
width: 90%;
margin: 7% auto;
position: relative;
text-align: center;
}
.instagram .B{     
    position: relative;
    z-index: 2;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 3%;
    background-color:#D7BFA7 ;
    }
    
    .B h3{
        font-size: 30px;
        font-family: 'Amiri',sans-serif;
        font-weight:normal;
        color: #7D5537;
    }
    
    .instagram h5{
        font-size: 15px;
        font-family: 'Arapey',sans-serif;
        font-weight:normal;

    }

    .B i{
        display: flex;
        align-items: center;
        padding: 3px;
    }
    .B i img{
       height: 1.5em;
    }

    .A{
        position: relative;
        padding-top: 3%;
    }
    .Linea{
        left: 0;
        right: 0;
        background-color: #7D5537;
        height: 0.8px;
        position: absolute;
        top: 50%;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Linea hr{
        background-color: #7D5537;
        height: 1px;
        position: absolute;
    }
    
    
    .desc{
        width: 90%;
        margin: 7% auto;

        align-self: center;
        border-top: 1px solid#7D5537;
        border-bottom: 1px solid #7D5537;
        text-align: center;
    }

    .desc h3{
        margin: auto;
        font-family: 'Arapey',sans-serif;
        font-weight: normal;
        font-size: 17px;
        padding: 3%;
        color: #7D5537;
    }

    .footpage h2{
font-size: 20px;
font-family: 'Amiri';
font-weight: bold;
color: #7D5537;
text-align: center;
    }

    .Medios{
        margin: 5%;
    }
    .iconos{
        display: grid;
        margin: auto;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows:repeat(2, 1fr) ;
        gap: 5%;
        height: 10vh;
        width: 60%;
        justify-items: center;
        align-items: center;
    }
    .iconos img{
        height: 2em;
        display: flex;
        justify-content: center;
        align-items: center;
       
    }
    .iconos h2{
        font-size: 10px;
        font-family: 'Arapey';
        font-weight: lighter;
        display: flex;
        justify-content: center;
        align-items: center;
    }
     h3{
        font-size:15px ;
        font-family: 'Arapey';
        font-weight: lighter;
        color: #7D5537;
        text-align: center;
    }
    .Contacto{
        text-align: center;
        width: 90%;
        margin: 5% auto;
    }

    .Contacto .contenido{
        display: grid;
        margin: 0 auto 5% auto;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows:repeat(3, 1fr) ;
        gap:0 5%;
        width: 45%;
        height: 20vh;
        align-items: center;

    }

    .contenido img{
        height: 2em;
        width: 2em;
        display: flex;
        

    }

    .contenido h3{
        font-size:15px ;
        font-family: 'Arapey';
        font-weight: lighter;
        color: #7D5537;
        text-align: start;
    }
    .Creado{
        margin:  auto;
        border-top: 1px solid #7D5537;
        padding: 5% 0;
        width: 90%;

    }
    
.products-preview{
    display:none;
    width:100%;
    position: fixed;
    top: 0; left: 0;
    background-color: rgba(0, 0, 0,.8);
    z-index: 50;
    min-height: 100vh;
    justify-content: center;
    align-items: center
}

.preview .imagen{
    width: 100%;
    height:auto;
    max-height: 40vh;
    object-fit: cover;
    margin-top: 4vh;
    border-radius: 10px;

}
.preview i img{
    width: 1em;
    height: 1em;
    margin-top: 0;
}

.preview h4{
    font-family: 'Arapey';
    font-size: 12px;
    font-weight: normal;
}

.preview h3{
    text-align: left;
    margin: auto;
    width: 90%;
}
.preview a{
    background-color: #D7BFA7;
    font-weight: lighter;
    width: 100%;
    text-align: center;
    padding: 1%;
    text-decoration: none;
    color: #F5F3EE;
    font-size: 20px;
    font-family: 'Amiri';
    border-radius:  10px;
    margin: 7% 0 0 0;
}
.products-preview .preview{
    display: none;
    flex-direction:column;
    width: 80%;
    height: 100%;
    background-color: white;
    text-align: center;
    position: relative;
    margin: 2rem;
    padding: 1rem;
    border-radius: 10px;
}
.products-preview .preview.active{
    display: flex;
    flex-direction:column;
}
.preview .fa-times{
    right: 1.5rem;
    top: 1rem;
    position: absolute;
    cursor: pointer;
    z-index: 10;

}

.preview .fa-times img:hover{
    transform: rotate(90deg);
    transition: .5s;
}
.pcfoot{
    display: none;
}

.overlay{
    display: none;
}

.text h2{
    text-align: center;
    }
    .text h6{
        text-align: center;
    }



.dest{
            display: none;
        }

        .sweeper{
            width: 100%;
            overflow: hidden;
        }
        
        .container-carousel{
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    height: 50vh;
}

.carruseles{
    display: flex;
    width: 100%;
    height: 50vh;
    background-color: black;
    
}

.btn_left,.btn-right{
    display: flex;
    position: absolute;
    top: 50%;
    font-size: 1.5rem;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
    font-weight: 600;
    cursor: pointer;
    color: var(--color_primario);
    transform:translate(0,-50%);
    transition: .5s ease;
    user-select: none;
    z-index:6;
    line-height: .8;
}
.btn-right{
    right: 1vh;
}
.btn_left{
    left: 1vh;
}

.carruseles i{
    vertical-align: middle;
}

.container-carousel .carruseles img,.container-carousel .carruseles video{
    max-height: none;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    border: none;
    border-radius: 0;
    margin: 0;
}

.slider-section{
    height: 100%;
    width: 100%;
}

.carruseles video{
    height: 100%;
    width: auto;
    display: flex;
    margin: auto;
}
.circulos{
    display: flex;
    gap: 1vh;
    position: absolute;
    z-index: 6;
    bottom: 1vh;
    justify-self: anchor-center;
}
.circulos .circulo{
    background-color: #d7bfa7 ;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    
}

.circulo.blanco::after {
    content: "";
    width: 0.7vh;
    height: 0.7vh;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    transform: translate(20%, 24%);
}

    @media (max-width: 767px) {
        
        

        .slider {
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: none;  /* Oculta la barra de scroll en Internet Explorer y Edge */
            scrollbar-width: none;
            overflow: auto;
        }
        .slider::-webkit-scrollbar {
            display: none;  /* Oculta la barra de scroll en Chrome, Safari y Opera */
        }
    
        .slider .product {
            scroll-snap-align: center;
            flex: 0 0 auto;
            margin-right: 2.5%;
            width: 48%;
        }
        
    
        .slider .arrow {
            display: none; /* Ocultar las flechas de navegación en móviles */
        }
    
    }
    @media (min-width: 768px) and (max-width: 1023px) {

        .slider {
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: none;  /* Oculta la barra de scroll en Internet Explorer y Edge */
            scrollbar-width: none;
            overflow: auto;
        }
        .slider::-webkit-scrollbar {
            display: none;  /* Oculta la barra de scroll en Chrome, Safari y Opera */
        }
    
        .slider .product {
            scroll-snap-align: center;
            flex: 0 0 auto;
            margin-right: 3%;
            width: 31%;
        }
        
    
        .slider .arrow {
            display: none; /* Ocultar las flechas de navegación en móviles */
        }
        .clases {
            width: 60%;
        }
        .clases img{
            width: 40%;
        }
        .clases h2{
font-size: 5vh;
        }
        .clases h4{
            font-size: 3vh;
        }
        .clases h6{
            font-size: 2.5vh;
            text-align: center;
        }
    
    }
@media (min-width: 1024px) {
    
    .slider-container{
        display: flex;
        position: relative;
        
    }
    #btn_rightd, #btn_rightn{
        right: -3em;
    }
    #btn_leftd, #btn_leftn{
        left: -3em;
    }
    
    
    .slider{
        overflow: visible;
    }
    .dest{
        display: flex;
        position: absolute;
        align-self: anchor-center;
        border: 2px solid #D7BFA7;
        border-radius: 50%;
        width: 2em;
        height: 2em;
        justify-content: center;
        z-index: 2;
        cursor: pointer;
        color: #D7BFA7;
        font-weight: bolder;
    }
    
    #Eliminar,#NuevoFiltro{
        width: 40%;
    }

        

    #footer{
        display: none;
    }

    .pcfoot{
        background-color: #D7BFA7;
        margin-top: 1vh;
        display: flex;
        padding: 0 10vh;
        height: 13vh;
        justify-content: center;

    }
    .instagram{
        width: 35%;
        left: 0;
        margin: 0;
    }
    .Creado{
        border-top: 0;
        padding: 0;
        margin: 0 0 1vh 0;
        width: 30%;
    }
    .Creado h3{
        height: 100%;
        align-content: end;
    }
    .iconos{
        display: flex;
        width: 35%;
        gap: 1vh;
        justify-content:right;
    }

    .nav__container{
        grid-template-rows: 3em;
    }
    .nav__container h1{
        margin: 0 1vh;
    }
    
    
    .content{
        width: 85%;
        justify-content: center;
        display: flex;
        margin: auto;
        gap: 3vh;
    }
    .prod{
        width: 100%;
        
    }
    .overlay{
        position: absolute;
        top: 0;
        right: 0;
        bottom: 10px;
        width: 60%;
        height: 50vh;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.0), #D7BFA7);
        display: flex;
        justify-content: center;
        align-items:end;
        text-align: center;
    }
    .clases{
        display: none;
    }
    .slider-frame{
        position: relative;
    }
    .slider-frame li{
    height: 50vh;
    display: flex;
    justify-content: center;
    align-self: center;
    }

    .slider-frame img{
    object-fit: cover;
    }


    .slider{
        width: 100%;
        align-self: center;
        scroll-behavior: smooth;
        transition: transform 0.3s ease-in-out;
    }
    
    .slider .product{
        flex: 0 0 13rem;
        width: 12rem;
        height: auto;
    }
.slider .product img{
    width: 100%;
}


.text h2{
font-size: 5vh;
}
.text h4{
    font-size: 3vh;
}
.text h6{
    font-size: 3vh;
    text-align: center;
}

.products-preview{
    display: none;
    width: 100%;

}

.preview.active{
    flex-wrap:nowrap;
    
}

.contenido{
    display: flex;
    width: 85%;
    margin: auto;
}
.cont{
    width: 100%;
}
.descr{
width: 150%;
}
.preview .imagen{
    width: 100%;
}
.preview h4{
    font-size: 20px;
}

.preview h2{
    font-size: 50px;
    line-height:1;
}
.preview h3{
    font-size: 20px;
}
.preview a{
    justify-content: center;
    margin: 3% 0 0 0;
}

.clase{
    width: 50%;
    margin: auto 0;
}
.clase h2, .clase h4, .clase a {
    color: white;
}
.clase a{
    border: 3px solid #D7BFA7;
    width: fit-content;
    padding: 1vh 2vh;
    margin:0 auto;
    border-radius: 12px;
}
.clase h6{
    margin: 2vh 0;
}
}










