/* ====== ESTILOS GENERALES ====== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: #fffdf9;
  color: #333;
  line-height: 1.6;
  padding: 0 1rem;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: #A2664B;
  text-align: center;
}

/* ====== NAVBAR ====== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fffdf9;
  border-bottom: 1px solid #eae3db;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo img {
  height: 90px;
  min-height: 90px;
  width: auto;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu li a {
  text-decoration: none;
  color: #B38867;
  font-weight: bold;
}

.menu li a:hover {
  color: #A2664B;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  padding: 0 1rem;
}

.hero-texto h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-texto p {
  font-size: 1.2rem;
}

/* ====== ACERCA ====== */
.acerca {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  padding: 2rem;
  font-size: 1.1rem;
  color: #555;
}

/* ====== REDES SOCIALES ====== */
.iconos-redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 20px auto;
  width: 100%;
}

.iconos-redes a {
  font-size: 1.8rem;
  color: #B38867;
  transition: color 0.3s ease;
}

.iconos-redes a:hover {
  color: #A2664B;
}

/* ====== CARRUSEL ====== */
.carrusel {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
}

.producto-caja {
  min-width: 220px;
  max-width: 220px;
  flex: 0 0 auto;
  text-align: center;
  position: relative;
}

.producto-caja img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.producto-caja h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1rem;
}

.producto-caja p {
  font-size: 0.9rem;
  color: #666;
}

.vendido {
  position: relative;
  opacity: 0.6;
}

.etiqueta-vendido {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #A2664B;
  color: white;
  padding: 5px 60px;
  font-size: 0.9rem;
  font-weight: bold;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fffdf9;
  border: 2px solid #B38867;
  font-size: 1.5rem;
  cursor: pointer;
  color: #A2664B;
  z-index: 10;
  padding: 0.7rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.flecha:hover {
  background-color: #A2664B;
  color: white;
  transform: translateY(-50%) scale(1.05);
}

.flecha span {
  display: block;
  transform: rotate(-45deg);
}

.flecha.izquierda {
  left: 10px;
}

.flecha.derecha {
  right: 10px;
}

.entrega-domicilio {
  text-align: center;
  padding: 2rem;
}

/* ====== LIGHTBOX ====== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .cerrar {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.oculto {
  display: none;
}

/* ====== BOTÓN WHATSAPP ====== */
.btn-whatsapp {
  background-color: white;
  color: #B38867;
  border: 1px solid #B38867;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #eae3db;
}

/* ====== FOOTER ====== */
footer {
  background-color: #fffdf9;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #eae3db;
}

footer .contacto {
  margin: 1rem 0;
}

footer .contacto a {
  color: #A2664B;
  font-weight: bold;
  text-decoration: none;
}

footer .contacto a:hover {
  text-decoration: underline;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-texto h1 {
    font-size: 1.5rem;
  }

  .hero-texto p {
    font-size: 0.9rem;
  }

  .producto-caja {
    min-width: 180px;
    max-width: 180px;
  }

  .producto-caja img {
    max-height: 200px;
  }

  .btn-whatsapp {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .etiqueta-vendido {
    font-size: 0.6rem;
    padding: 4px 24px;
  }
}









