@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-family: "Plus Jakarta Sans", sans-serif;
    box-sizing: border-box;
    overflow-x: clip;
}

@media(max-width:550px) {
    .Products2{
        overflow-x:clip;
    }
    .Products{
        overflow-x:clip;
    }
}
@media(min-width:550px) {
    .footer-img{
        display: none;
    }
}
/* Estilo del loader */ 
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner circular */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Animación de giro */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
img{
    object-fit: cover;
}
.Main--Container{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 10px;
    overflow-x: clip;

}
header{
    display: flex;
    flex-direction: column;
    overflow: clip;
}
H1{
    font-weight: 900;
    color: #725a41;
    font-size: 60px;
}
/*Buscar fuente y color para el background del input*/
input::-webkit-input-placeholder {
    margin-left: 20px;
    color: #725a41;
    font-weight: 700;
}
  
input::-webkit-input-placeholder::before {
    content: "";
    font-family: "Font Awesome"; /* Reemplaza por la familia de fuentes de tu icono */
    font-size: 16px; /* Ajusta el tamaño del icono */
    color: #ccc; /* Ajusta el color del icono */
    position: absolute;
    left: 5px; /* Ajusta la posición horizontal del icono */
    top: 50%; /* Centra el icono verticalmente */
    transform: translateY(-50%);
}
input{
    border-radius: 10px;
    height: 28px;
    background-color: rgb(206, 206, 206);
    /*opacity: 0.2;*/
    outline: none;
    border: none;
    justify-content: center;
    width: 95%;
    margin: 12px 0px;
    padding-left: 20px;
}

ul img{
    max-width: 300px;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: rgb(192, 192, 192);
}
a:hover{
    text-decoration: underline;
    color: blue;
}
.Products{
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 215px;
    overflow-x: scroll;
}
.Product{
    margin-right: 12px;
    width: 250px;
    height: 200px;
}
.Product img{
    width: 250px;
    border-radius: 10px;
    height: 150px;
    transition: 300ms;
    position: relative;
}
.Product p{
    font-weight: 700;
    margin: 8px 0 0 0;
}
H2{
    font-weight: 700;
    text-align: center;
}
.Products2{
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    height: 145px;
    width: 100%;
}
.Product2{
    width: 150px;
    height: 100px;
    margin-right: 8px;
}
.Product2 img{
    width: 150px;
    border-radius: 20px;
    height: 80px;
    transition: 300ms;
}
.Product2 p{
    font-weight: 700;
    margin: 8px 0 0 0;
}
footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-img{
    width: 100%;
    margin: 20px;
}
h6{
    font-size: medium;
}
.TP{
    color: #725a41;
    font-weight: 500;
    font-size: 24px;
}
H6{
    text-align: center;
}
.redes-sociales{
    display: flex;
    justify-content: center;
    align-items: center;
}
.whats{
    margin: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.insta{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.enlace{
    display: flex;
    justify-content: space-around;
    margin-bottom: 12px;
}
.enlace div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.enlace div a{
    color: gray;
    text-decoration: none;
}
.enlace a:hover{
    color: blue;
    text-decoration: underline;
}
.cama img{
    object-fit: cover;
}
.resultados a{
    text-decoration: none;
    color: rgb(192, 192, 192);
}
.resultados a:hover{
    color: blue;
    text-decoration: underline;
}
.Product2 img{
    object-fit: cover;
}
.footer-div{
    display: flex;
    background-color: rgb(192, 192, 192);
    margin: 20px;
    border-radius: 20px;
}
.footer-div img{
    width: 50%;
    border-radius: 20px;
    
}
.footer-div div{
    flex-direction: column;
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
}
.footer-div div p{
    margin: 10px;
}