@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #e9e9e9;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background: #ececec;
}

/* menu principal */

header  {
  background-color: #fffcf5;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 1rem;
  flex-wrap: wrap;
}


.logo{
  max-width: 170px;
  height: auto;
  margin: 0 auto;
  display: block;
  justify-self: start;
}

.logo {
  cursor: pointer;
}


#menu-toggle {
  display: none;
  font-size: 1.5rem; 
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  margin-right: 1rem;
}

header .logo, .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  min-width: 80px;
}

header .logo img, .logo img {
  max-width: 80%;
  height: auto;
}

.menu {
  display: flex;
  flex: 1;
  justify-content: center;
}

nav {
  display: block;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
}

nav ul li {
  display: inline-block;
  margin: 0 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
  display: inline-block;
  padding: 0.5rem 0;
}

nav ul li a:hover {
  color: #5e5c4c;
  border-bottom: 2px solid #ad9f50;
}

#carrito, #buscador, #usuario {
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  margin-left: 0.8rem;
  transition: color 0.2s;
  display: inline-block;
}

#carrito:hover, #buscador:hover, #usuario:hover {
  color: #ad9f50;
}


/*  TABLET  */

@media (max-width: 1024px) {
  nav ul li {
    margin: 0 1rem;
  }
}


/*  CELULAR  */

@media (max-width: 768px) {

  #menu-toggle {
    display: block;
    order: 1;
  }

  .logo {
    order: 2;
    flex: 1;
    justify-content: center;
  }

  #carrito, #buscador, #usuario {
    order: 3;
    font-size: 1rem;
    margin-left: 0.5rem;
  }

  .menu {
    width: 100%;
    order: 4;

    /* colapsado por defecto */
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }

  /* abierto — JS agrega .active al #menu */
  .menu.active {
    max-height: 500px;
  }

  nav {
    display: block;
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    background: #fffcf5;
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
  }

  nav ul li {
    margin: 10px 0;
    text-align: center;
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 0.5rem 1rem;
    cursor: pointer;
  }

}


/*  CELULAR PEQUEÑO  */

@media (max-width: 480px) {
  .logo img {
    max-width: 110px;
    display: center;
  }

  #carrito, #buscador, #usuario {
    font-size: 0.5rem;
  }
}


/* carrusel del texto hearde */

.contenedor-texto{
width:100%;
overflow:hidden;
background:#8f8a71;
padding:5px 0;
}

.texto{
display:inline-block;
white-space:nowrap;
animation:infinito 20s linear infinite;
color:bisque;
font-family:'urbanist', sans-serif;
font-size:clamp(0.8rem,1.8vw,1.2rem);
letter-spacing:1.5px;
}

.texto span{
margin-right:40px;
}

/* animación */

@keyframes infinito{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/*  RESPONSIVE  */

/* tablet */

@media (max-width:1024px){

.texto{
font-size:1.2rem;
letter-spacing:1.5px;
}

}

/* celular */

@media (max-width:768px){

.contenedor-texto{
padding:8px 0;
}

.texto{
font-size:1rem;
letter-spacing:1px;
animation:infinito 16s linear infinite;
}

.texto span{
margin-right:25px;
}

}

/* celular pequeño */

@media (max-width:480px){

.texto{
font-size:0.9rem;
letter-spacing:0.5px;
animation:infinito 14s linear infinite;
}

.texto span{
margin-right:20px;
}

}
 
/*Seguimos & Button  */
/* CONTENEDOR */

#seguimos{
position:relative;
width:100%;
display:block;
}

/* IMAGEN */

#seguimos img{
width:100%;
height:auto;
display:block;
}

/* BOTÓN */

#seguimos .cons1{
position:absolute;
top:85%;
left:70%;
transform:translate(-50%,-50%);
background:#ad9f50;
color:white;
text-decoration:none;
padding:0.6rem 1.2rem;
border-radius:25px;
font-family:'Urbanist', sans-serif;
font-weight:500;
font-size:clamp(0.1rem,2vw,1.5rem);
white-space:nowrap;
cursor:pointer;
transition:background-color 0.3s;
z-index:10;
animation:latido 1s infinite;
}

/* HOVER */

#seguimos .cons1:hover{
background:#c2b081;
}

/* ANIMACIÓN */

@keyframes latido{

0%{
transform:translate(-50%,-50%) scale(1);
}

50%{
transform:translate(-50%,-50%) scale(1.1);
}

100%{
transform:translate(-50%,-50%) scale(1);
}

}


/*  RESPONSIVE  */

/* TABLET */

@media (max-width:1024px){

#seguimos .cons1{
top:88%;
font-size:1.2rem;
padding:0.6rem 1rem;
}

}


/* CELULAR */

@media (max-width:768px){

#seguimos .cons1{
top:90%;
font-size:1rem;
padding:0.5rem 0.9rem;
}

}


/* CELULAR PEQUEÑO */

@media (max-width:480px){

#seguimos .cons1{
top:92%;
font-size:0.9rem;
padding:0.4rem 0.8rem;
}

}


/* histotia */

#historia{
  margin: 50px 300px;
  text-align: center;
  padding: 15rem 10rem;
  border: 2px solid #c2b081 ;
  border-radius: 25px;
  font-size: 20px;
  background-color: #fffcf5;
}

@media (max-width: 1024px) {
  #historia {
    margin: 50px 100px;
    padding: 10rem 5rem;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #historia {
    margin: 20px 20px;
    padding: 5rem 2rem;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #historia {
    margin: 10px 10px;
    padding: 3rem 1rem;
    font-size: 14px;
  }

}

h3{
  font-family:'Lexend';
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #c2b081;
}

section {
  padding: 2rem 1rem;
  text-align: center;
}
section img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}
section button  {
  background-color: #616161;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 1rem;
  font-family: 'monsetratt', sans-serif;
  font-weight: 500;
}
section button:hover {
  background-color: #969696;
}
section button a {
  color: #fff;
  text-decoration: none;

}

aside {
  padding: 2rem 1rem;
  background-color: #f5f5f5;
}
aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
aside ul li {
  padding: 1rem 0;
}
aside ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
aside ul li a:hover {
  color: #909091;
}
hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 1rem 0;
}


/*carrusel imagnes pagina temprada */

.contenedorimg1 {
  perspective: 1000px;
}

.carrusel {
  width: 250px;
  height: 250px;
  position: relative;
  transform-style: preserve-3d;
  animation: girar 15s infinite linear;
}

.carrusel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Posicionamos cada imagen en círculo */
.carrusel img:nth-child(1) {
  transform: rotateY(0deg) translateZ(400px);
}
.carrusel img:nth-child(2) {
  transform: rotateY(72deg) translateZ(400px);
}
.carrusel img:nth-child(3) {
  transform: rotateY(144deg) translateZ(400px);
}
.carrusel img:nth-child(4) {
  transform: rotateY(216deg) translateZ(400px);
}
.carrusel img:nth-child(5) {
  transform: rotateY(288deg) translateZ(400px);
}

/* Animación */
@keyframes girar {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.carrusel1 {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.track {
  display: flex;
  width: calc(250px * 14); /* 7 originales + 7 duplicadas */
  animation: scroll 25s linear infinite;
}

.track img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin: 0 15px;
  border-radius: 15px;
}

/* Animación continua */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .track img {
    width: 150px;
    height: 150px;
  }
}



footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
footer .footer-content ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
footer .footer-content ul li {
  margin: 0;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem; 
}
footer a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  header {
    padding: 0.5rem;
    position: relative;
  }


  #menu-toggle {
    display: block;
    cursor: pointer;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
  
  header .logo {
    flex: none;
    margin: 0.5rem auto;
  }
  
  .menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    z-index: 999;
    padding-top: 60px;
    max-height: 100vh;
    overflow-y: auto;
  }
  
  .menu.active {
    display: flex;
    flex-direction: column;
  }
  
  nav {
    width: 100%;
  }
  
  nav ul {
    flex-direction: column;
    padding: 1rem 0;
    justify-content: flex-start;
    width: 100%;
  }
  
  nav ul li {
    display: block;
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  
  nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: none;
  }
  
  nav ul li a:hover {
    background-color: #f5f5f5;
    color: #e6e6e6;
  }
  
  #carrito, #buscador, #usuario {
    margin-left: 0.5rem;
    font-size: 1.2rem;
  }
  

/* booton imagen*/

}
 button.primary:hover {
   background-color: #a8a8a8;
 }


section h2{
  position:absolute;
  left:-9999px;
}

#contedorfotos section a,
.contedorfotos#contedorfotos section a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: rgba(97, 97, 97, 0.9);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
}

#contedorfotos section a:hover,
.contedorfotos#contedorfotos section a:hover {
  background-color: rgba(150, 150, 150, 0.9);
}
 
 footer {
   background-color: #333;

      padding: clamp(10px, 2vw, 20px) clamp(20px, 5vw, 50px);
      font-size: clamp(14px, 2vw, 22px);
   }

.contedorfotos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contedorfotos section {
  position: relative;
  padding: 0;
}
 
/* boton wp */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
animation:float 2s infinite ease-in-out;
z-index:999;
transition:transform .3s;
}

.whatsapp-float:hover{
transform:scale(1.15);
}

@keyframes float{
0%{transform:translateY(0px);}
50%{transform:translateY(-6px);}
100%{transform:translateY(0px);}
}

/* efecto pulso */

.whatsapp-float::after{
content:"";
position:absolute;
width:100%;
height:100%;
border-radius:50%;
background:#25D366;
z-index:-1;
animation:pulse 2s infinite;
}



@keyframes pulse{
0%{
transform:scale(1);
opacity:.6;
}
70%{
transform:scale(1.6);
opacity:0;
}
100%{
opacity:0;
}
}

/* responsive */

@media(max-width:600px){

.whatsapp-float{
width:55px;
height:55px;
bottom:20px;
right:20px;
}

}

/* experiencias de clientes */

.reviews{
padding:90px 0;
background:#ececec;
}

.reviews-container{
max-width:1200px;
margin:auto;
overflow:hidden;
text-align:center;
}

.reviews-container h4{
font-size:50px;
margin-bottom:10px;
}

.reviews-sub{
color:#777;
margin-bottom:50px;
font-family: "montserrat", sans-serif;
font-size: 2rem;
}

.reviews-slider{
overflow:hidden;
position:relative;
}

.reviews-track{
display:flex;
gap:30px;
animation:scroll 35s linear infinite;
}

.review-card{
background:white;
min-width:300px;
padding:25px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:left;
}

.review-header{
display:flex;
justify-content:flex-end;
margin-bottom:10px;
}

.google-logo{
width:35px;
}

.stars{
color:#ffc107;
font-size:18px;
margin-bottom:10px;
}

.review-card p{
font-size:14px;
color:#444;
margin-bottom:20px;
}

.cliente{
font-weight:600;
color:#333;
}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* responsive */

/* pantallas grandes */
@media (max-width:1200px){

.reviews-container{
padding:0 20px;
}

.reviews-container h4{
font-size:40px;
}

.reviews-sub{
font-size:1.8rem;
}

}


/* tablets */
@media (max-width:768px){

.reviews{
padding:70px 0;
}

.reviews-container h4{
font-size:32px;
}

.reviews-sub{
font-size:1.5rem;
margin-bottom:35px;
}

.review-card{
min-width:260px;
padding:20px;
}

.review-card p{
font-size:13px;
}

.google-logo{
width:30px;
}

}


/* celulares */
@media (max-width:480px){

.reviews{
padding:60px 15px;
}

.reviews-container h4{
font-size:26px;
}

.reviews-sub{
font-size:1.2rem;
margin-bottom:30px;
}

.reviews-track{
gap:20px;
}

.review-card{
min-width:220px;
padding:18px;
}

.review-card p{
font-size:12px;
}

.google-logo{
width:25px;
}

.stars{
font-size:16px;
}

}


/* catalogo */

.catalogo{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
padding:60px 8%;
max-width:1200px;
margin:auto;
}

.producto{
background:white;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.08);
text-align:center;
padding:20px;
transition:0.3s;
}

.producto:hover{
transform:translateY(-8px);
}

.producto img{
width:100%;
height:300px;
object-fit:cover;
border-radius:8px;
}

.producto h6{
font-size:18px;
margin:10px 0;
}

.precio{
font-size:20px;
color:#ad9f50;
font-weight:600;
}

.btn-agregar{
background:#333;
color:white;
border:none;
padding:10px 20px;
border-radius:20px;
cursor:pointer;
margin-top:10px;
transition:0.3s;
font-family: 'urbanist', sans-serif;
}

.btn-agregar:hover{
background:#ad9f50;
}


/* carrito */

.carrito{
max-width:400px;
margin:80px auto;
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.carrito ul{
list-style:none;
padding:0;
}

.carrito li{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.total{
font-size:22px;
margin-top:20px;
}

.btn-whatsapp{
background:#25d366;
color:white;
border:none;
padding:12px;
width:100%;
border-radius:8px;
cursor:pointer;
margin-top:20px;
font-size:16px;
font-family: 'urbanist', sans-serif;
}


/* tablet */

@media (max-width:900px){

.catalogo{
grid-template-columns:repeat(2,1fr);
gap:20px;
padding:40px 5%;
}

.producto img{
height:180px;
}

}


/* celular */

@media (max-width:600px){

.catalogo{
grid-template-columns:1fr;
gap:20px;
padding:30px 5%;
}

.producto{
padding:15px;
}

.producto img{
height:160px;
}

.carrito{
margin:40px 15px;
padding:20px;
}

.total{
font-size:20px;
}

.btn-whatsapp{
font-size:14px;
}

}