*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
    scroll-behavior: smooth;
    font-family: 'chetta vissto';
}

@font-face {
    font-family: 'chetta vissto';
    src: url(/font/chetta_vissto/ChettaVissto.ttf);
}

@font-face {
    font-family: 'playfair display';
    src: url(/font/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf);
}

body{
    background-color: #fefbf7;
    position: relative;
}

body .whatsapp{
    position: sticky;
    top: 0;
    bottom: 2em;
    left: 68em;
    right: 0;
    width: 100px;
}

body .whatsapp img{
    width: 100%;
}

h1{
    display: none;
}

.estilo{

    h2{
        color:#985900;
        font-size: 1.8em;
        padding-bottom: 1em;
        font-family: 'playfair display';
        font-weight: 600;
    }

    h3{
        color: #ffffff;
        font-size: 1.3em;
        text-align: center;
        font-weight: lighter;
    }

    p{
        color:#493d2d;
        font-size: 1.2em;
        font-family: Georgia, 'Times New Roman', Times, serif;
        line-height: 1.5em;
    }

    strong{
        font-family: Georgia, 'Times New Roman', Times, serif;
        font-size: 1em;
    }
    
    padding-top: 3em;

}


/* HEADER */

.menu-toggle{
    display: none;
}

header{
    background-color: #fff;
    filter: drop-shadow(0px 3px 3px #6b6b6b);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 4em;
    z-index: 999;
    position: sticky;
    top: 0;
}

header nav{
    width: 70%;
}

header ul{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2em;
}

header li{
    list-style: none;
}

header a{
    text-decoration: none;
    font-size: 1.25em;
    color: #64543e;
}

header a:hover{
    text-decoration: underline #ec8900;
}

header .logo{
    width: 17%;
}

header img{
    width: 100%;
}

/* INICIO */

#inicio{
    width: 100%;
    display: flex;
    flex-direction: row;
    filter: drop-shadow(0px 3px 3px #6b6b6b);
}

#inicio .columna1, #inicio .columna2, #inicio .columna3{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 33.333%;
}

#inicio a{
    background-color: #fff7e9;
    padding: 0.5em;
    text-decoration: none;
    color: #64543e;
    position: absolute;
    border: 0.1em solid #3d1101;
    border-radius: 0.3em;
    margin-bottom: 1em;
    transition: 0.3s;
}

#inicio a:hover{
    text-decoration: underline #ec8900;
}

#inicio img{
    width: 100%;
}

/* NOSOTROS */

#nosotros{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2em;
    gap: 3em;
    padding: 1em;
}

#nosotros .columna1{
    width: 40%;
}

#nosotros .columna1 img:first-of-type{
    margin-bottom: 3em;
}

#nosotros .columna1 img{
    width: 100%;
    filter: drop-shadow(0.1em 0.1em 0.1em #453101);
    border-radius: 0.5em;
}

#nosotros .columna2{
    width: 60%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#nosotros ul li{
    color:#cf7200;
    list-style: circle;
    line-height: 2em;
    font-family: 'paris forbel';
    font-weight: bold;
}

/* PRODUCTOS */

#productos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#productos .galeria{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: space-between;
    flex-wrap: wrap;
    width: 100%;
}

#productos .producto{
    width: 30%;
    margin: 0.5em;
    display: flex;
    flex-direction: column;
}

#productos img{
    width: 100%;
}

.producto {
  position: relative;
  width: 30%;
  margin: 0.5em;
  overflow: hidden;
  border-radius: 0.5em;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.producto:hover {
  transform: scale(1.02);
}

/* Imagen */
.producto .img-container img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.producto:hover .img-container img {
  transform: scale(1.05);
}

/* Caja inferior con título y descripción */
.producto .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(100, 84, 62, 0.9); /* color acorde a tu paleta */
  color: #fff7e9;
  padding: 1em;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.producto h3{
    color: #ffffff;
    background-color: #64543e;
}

.producto:hover h3{
    display: none;
}

/* Al hacer hover, se levanta */
.producto:hover .info {
  transform: translateY(0);
}

.producto .info p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 0.95em;
  line-height: 1.3em;
  color:#fefbf7
}

.btn-preview {
    padding: 10px 20px;
    background-color: #f4c542;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

#productos .botones{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#productos .boton{
    margin: 1.5em;
}

#productos .boton button{
    font-size: 1.1em;
    transition: 0.3s;
    background-color:#ffd000;
}

#productos .boton button:hover{
    filter: drop-shadow(3px 3px 3px #372209);
    transform: scale(1.02);
}

/* CONTACTO */

#contacto{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0.5em 4em;
    border-radius: 1em;
}

#contacto .columna1, #contacto .columna2{
    width: 50%;
    display: flex;
    flex-direction: column;
}

#contacto a{
    color:#955502;
    font-weight: bold;
}

#contacto .white{
    background-color: #ffffff;
    padding: 0.3em;
}

#contacto p{
    margin-bottom: 0.4em;
}

#contacto strong{
    font-family:'Times New Roman', Times, serif;
}

#contacto .icono{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2em;
    margin: 1em;
}

#contacto .icono p{
    background-color: none;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #955502;
}

#contacto img{
    width: 15%;
}

#contacto .columna2 iframe{
    width: 100%;
}


/* PREGUNTAS FRECUENTES */


#faq{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.faq-item {
    border-radius: 0.3em;
    margin-bottom: 0.5em;
    width: 80%;
}

.faq-question {
    background-color: #ffffff;
    color: #955502;
    font-size: 1.2em;
    font-family: 'playfair display';
    padding: 0.3em 1.5em;
    cursor: pointer;
    transition: 1s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: solid 0.1em #64543e;
}

.faq-question:hover {
    filter: drop-shadow(3px 3px 3px #762802);
}

.faq-input {
    display: none;
}

.faq-answer {
    display: none;
    background-color: #fbf4e4;
    padding: 1em;
    position: absolute;
    width: 80%;
    text-align: center;
}

.faq-input:checked + .faq-question + .faq-answer {
    display: block;
}

/* FOOTER */

footer{
    background-color: #64543e;
    height: auto;
    color: #fff7e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer .fila1, footer .fila2, footer .fila3{
    margin: 1em;
}

footer .fila1 a{
    color: #fff7e9;
    text-decoration: none;
    padding: 1em;
}

footer .fila2 a{
    width: 100%;
    margin: 2em;
}


footer .fila2 img{
    width: 2.6em;
}

footer .fila3 a{
    text-decoration: none;
    color: #fff7e9;
}

footer .fila3 p{
    padding: 0.5em;
}

@media screen and (min-width:930px) and (max-width:1100px){

.menu-toggle{
    display: none;
}

#nosotros{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2em;
    gap: 3em;
    padding: 1em;
}

#nosotros .columna1{
    width: 100%;
}

#nosotros .columna2{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#nosotros .columna1 img{
    width: 100%;
}

#productos .producto{
    width: 45%;
    margin: 0.5em;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 0.5em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

}

@media screen and (min-width:700px) and (max-width: 930px){

header{
    display: flex;
    flex-direction: row-reverse;
    margin: auto;
    justify-content: flex-end;
    align-items: center;
    padding: 0.3em 1em;
}

header .logo{
    width: 100%;
    text-align: left;
    margin-right: 3em;
}

header .logo img{
    width: 230px;
}

header .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 10%;
    font-size: 2em;
    position: absolute;
}

header nav ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

header nav ul.show {
    display: flex;
}


#nosotros{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2em;
    gap: 3em;
    padding: 1em;
}

#nosotros .columna1{
    width: 100%;
}

#nosotros .columna2{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#nosotros .columna1 img{
    width: 100%;
}

#productos .producto{
    width: 45%;
    margin: 0.5em;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 0.5em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#contacto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.5em 4em;
    border-radius: 1em;
}

#contacto .columna1, #contacto .columna2{
    width: 100%;
    margin-bottom: 1em;
}

}

@media screen and (min-width: 600px) and (max-width: 700px){

header{
    display: flex;
    flex-direction: row-reverse;
    margin: auto;
    justify-content: flex-end;
    align-items: center;
    padding: 0.3em 1em;
}

header .logo{
    width: 100%;
    text-align: left;
    margin-right: 3em;
}

header .logo img{
    width: 230px;
}

header .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 10%;
    font-size: 2em;
    position: absolute;
}

header nav ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

header nav ul.show {
    display: flex;
}

#inicio{
    width: 100%;
    display: flex;
    flex-direction: column;
}

#inicio .columna1, #inicio .columna2, #inicio .columna3{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

#inicio img{
    width: 100%;
    max-height: 20em;
    object-position: center;
    object-fit: cover;
}

#nosotros{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2em;
    gap: 3em;
    padding: 1em;
}

#nosotros .columna1{
    width: 100%;
}

#nosotros .columna2{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#nosotros .columna1 img{
    width: 100%;
}

#productos .producto{
    width: 45%;
    margin: 0.5em;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 0.5em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#contacto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.5em 4em;
    border-radius: 1em;
}

#contacto .columna1, #contacto .columna2{
    width: 100%;
    margin-bottom: 1em;
}

}

@media screen and (max-width: 600px){
header{
    display: flex;
    flex-direction: row-reverse;
    margin: auto;
    justify-content: flex-end;
    align-items: center;
    padding: 0.3em 1em;
}

header .logo{
    width: 100%;
    text-align: left;
    margin-right: 4em;
}

header .logo img{
    width: 230px;
}

header .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 10%;
    font-size: 2em;
    position: absolute;
}

header nav ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

header nav ul.show {
    display: flex;
}

#inicio{
    width: 100%;
    display: flex;
    flex-direction: column;
}

#inicio .columna1, #inicio .columna2, #inicio .columna3{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

#inicio img{
    width: 100%;
    max-height: 20em;
    object-position: center;
    object-fit: cover;
}

#nosotros{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2em 1em;
    gap: 1.5em;
    padding: 0;
}

#nosotros h2{
    text-align: center;
}

#nosotros .columna1{
    width: 100%;
}

#nosotros .columna1 img{
    width: 100%;
}

#nosotros .columna1 img:first-of-type{
    margin-bottom: 1em;
}

#nosotros .columna2{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

#productos .producto{
    width: 100%;
    margin: 0.5em;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 0.5em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#productos .botones{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#productos .boton{
    margin: 1em;
}

#contacto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.5em 1em;
    border-radius: 1em;
}

#contacto .columna1, #contacto .columna2{
    width: 100%;
    margin-bottom: 1em;
}

#faq{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.faq-item {
    border-radius: 0.3em;
    margin-bottom: 0.5em;
    width: 100%;
}

.faq-answer{
    width: 100%;
}

footer .fila2 a{
    width: 100%;
    margin: 1em;
}

}
