/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: #e1b347;
}
p {
  color: #ddd;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* NAVBAR */
/* NAVBAR con degradado opaco */
.navbar {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 80%, rgba(0, 0, 0, 0) 100%) !important;
  padding: 0.8rem 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Logo */
.navbar-brand img {
  height: 60px;
}

/* Ícono hamburguesa en dorado */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(225,179,71, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Enlaces */
.navbar-nav .nav-link {
  color: #e1b347 !important;
  font-family: 'Lora', serif;
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

/* Fondo colapsado en mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    margin-left: 0;
    text-align: center;
  }
}

/* HERO */
.hero {
  height: 400px; ;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero {
  position: relative;
  overflow: hidden;
}

/* Estilo base: ocultamos ambos por si acaso */
.video-desktop,
.video-mobile {
  width: 100%;
  height: auto;
  display: none;
}

/* Mostrar solo video de escritorio a partir de 768px */
@media screen and (min-width: 768px) {
  .video-desktop {
    display: block;
  }
}

/* Mostrar solo video mobile en pantallas chicas */
@media screen and (max-width: 767px) {
  .video-mobile {
    display: block;
  }
}

/* =======================
   HERO: IMÁGENES RESPONSIVAS
   ======================= */

/* INICIO */
.hero-inicio {
  background-image: url('../img/hero.png');
}
@media (min-width: 768px) {
  .hero-inicio {
    background-image: url('../img/hero-desktop.png');
  }
}

/* ESPECIALES */
.hero-especiales {
  background-image: url('../img/hero-especiales.png');
}
@media (min-width: 768px) {
  .hero-especiales {
    background-image: url('../img/hero-especiales-desktop.png');
  }
}

/* CONTACTO */
.hero-contacto {
  background-image: url('../img/hero-contacto.png');
}
@media (min-width: 768px) {
  .hero-contacto {
    background-image: url('../img/hero-contacto-desktop.png');
  }
}

/* TRABAJÁ CON NOSOTROS */
.hero-trabaja {
  background-image: url('../img/hero-trabaja.png');
}
@media (min-width: 768px) {
  .hero-trabaja {
    background-image: url('../img/hero-trabaja-desktop.png');
  }
}

/* pastas */
.hero-pastas {
  background-image: url('../img/hero-pastas.png');
}
@media (min-width: 768px) {
  .hero-pastas {
    background-image: url('/img/hero-pastas-desktop.png');
  }
}
/* salsass */
.hero-salsas {
  background-image: url('../img/hero-salsas.png');
}
@media (min-width: 768px) {
  .hero-salsas {
    background-image: url('/img/hero-salsas-desktop.png');
  }
}

/* quesos */
.hero-quesos {
  background-image: url('../img/hero-quesos.png');
}
@media (min-width: 768px) {
  .hero-quesos {
    background-image: url('/img/hero-quesos-desktop.png');
  }
}

/* postres */
.hero-postres {
  background-image: url('../img/hero-postres.png');
}
@media (min-width: 768px) {
  .hero-postres {
    background-image: url('/img/hero-postres-desktop.png');
  }
}
/* INTRO Y DESTACADO */
.intro {
  text-align: center;
  padding: 2rem 1rem;
}
.destacados{
  padding: 20px 0px;
}

.btn-destacado {
  background-color: #e1b347;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

 .btn-comunidad {
  background-color: #e1b347;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.btn-destacado:hover {
  background-color: #d3a73f;
}

/* ACCESOS RÁPIDOS */
.accesos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem 1rem;
}

.card {
  border: 2px solid #e1b347;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background-color: #000;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
/* POP-UP */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background-color: #111;
  border: 1.5px solid #e1b347;
  border-radius: 12px;
  max-width: 90%;
  width: 100%;
  padding: 3.5rem 1.5rem 2rem; /* más espacio arriba */
  position: relative;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.1rem;
  width: auto;
  height: auto;
  background: none;
  border: none;
  color: #e1b347;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.popup-close:hover {
  transform: scale(1.3);
  color: #fff;
}

/* Título separado */
.popup-content h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e1b347;
  border: none;
  text-align: center;
}

.popup-btn {
  display: block;
  margin: 0.6rem auto;
  background: none;
  border: 1.5px solid #e1b347;
  color: #e1b347;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: 500;
  font-family: 'Lora', serif;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
  transition: all 0.3s ease;
}

.popup-btn:hover {
  background-color: #e1b347;
  color: #000;
}

/* Horarios */
.horario-texto {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
}
@media (min-width: 992px) {
  .accesos {
    grid-template-columns: repeat(4, 1fr); /* 4 columnas iguales */
  }

  .card {
    width: 100%; /* En grid, no necesitás calc() */
  }
}


/* COMUNIDAD PLANGU */
.comunidad {
  padding: 2rem 1rem;
  text-align: center;
}

.video-comunidad {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  object-fit: cover;
  max-height: 400px;
}

.comunidad-texto {
  font-size: 0.95rem;
  color: #eee;
}
/*FOOTER*/ 
.footer {
  background-color: #111;
  padding: 2rem 1rem;
  color: #e1b347;
  font-family: 'Lora', serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #e1b347;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Copy final */
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* Desktop */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-col {
    flex: 1;
    padding: 0 1rem;
  }

  .footer-copy {
    font-size: 0.85rem;
  }
}
/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.main-wpp-btn {
  background-color: #25d366;
  border: none;
  border-radius: 50%;
  padding: 1px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.main-wpp-btn img {
  width: 60px;
  height: 60px;
}

.main-wpp-btn:hover {
  transform: scale(1.1);
}

/* Menú de sucursales */
/* Menú sobre el botón */
.wpp-menu {
  display: none;
  flex-direction: column;
  background-color: #141414;
  border: 1.5px solid #e6c27a;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  min-width: 190px;
}

.wpp-menu a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1rem;
  margin: 0.3rem 0;
  transition: all 0.2s;
  font-family: 'Lora';
}

.wpp-menu a:hover {
  color: #e6c27a;
  padding-left: 6px;
}

/* ===== SECCIÓN NOSOTROS ===== */
.bloque-nosotros {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.bloque-nosotros h2 {
  font-size: 2rem;
  color: #e1b347;
  margin-bottom: 1.5rem;
}

.bloque-nosotros > p:first-of-type {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

/* Grid para las 3 columnas */
.bloque-nosotros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.bloque-nosotros-grid img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto;
  display: block;
}

.bloque-nosotros-grid h3 {
  color: #e1b347;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.bloque-nosotros-grid p {
  color: #fff;
  font-size: 0.95rem;
  max-width: 90%;
  margin: 0.5rem auto 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .bloque-nosotros-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }
}

/* ===== GALERÍA NOSOTROS ===== */
.galeria-nosotros {
  padding: 5px;
  background-color: #000;
  text-align: center;
}

.galeria-nosotros h3 {
  font-family: 'Lora', serif;
  color: #e1b347;
  font-size: 2rem;
  margin-bottom: 20px;
}

.galeria-nosotros .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.galeria-nosotros .col-md-6 {
  flex: 1 1 45%;
  max-width: 45%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-nosotros .col-md-6:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(225, 179, 71, 0.3);
}

.galeria-nosotros img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .galeria-nosotros .col-md-6 {
     flex: 1 1 1 30%;
  max-width: 30%;
  }
}

.nuestra-produccion {
  padding: 4rem 1.5rem;
  background-color: #000;
  color: #fff;
}

.nuestra-produccion h2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: #e1b347;
  margin-bottom: 1rem;
}

.nuestra-produccion p {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.produccion-carrusel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.produccion-card {
  flex: 0 0 280px;
  background-color: #1c1c1c;
  border: 1px solid #e1b347;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.produccion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 200, 80, 0.3);
}

.produccion-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.produccion-card h4 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: #e1b347;
  margin: 1rem 0 0.5rem;
}

.produccion-card p {
  font-size: 0.9rem;
  padding: 0 1rem 1.5rem;
  color: #ccc;
}
.produccion-carrusel::-webkit-scrollbar {
  display: none;
}
.produccion-carrusel {
  -ms-overflow-style: none; /* IE y Edge */
  scrollbar-width: none; /* Firefox */
}


/* ===== SECCIÓN DE FECHAS ESPECIALES ===== */
.fechas-especiales {
  background-color: #000;
  padding: 4rem 1.5rem;
  color: #fff;
  text-align: center;
}

.fechas-especiales h2 {
  font-family: 'Lora', serif;
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

/* ===== GRILLA ===== */
.fechas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

/* ===== CARDS ===== */
.fecha-card {
  background-color: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid #e1b347;
}

.fecha-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.fecha-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===== TEXTOS ===== */
.fecha-card .tag {
  font-family: "lora";
  font-weight: bold;
  font-size: 36px;
  margin: 1rem 0 0.5rem;
}

.fecha-card .titulo {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: #e1b347;
  margin-bottom: 0.5rem;
}

.fecha-card .desc {
  font-size: 0.95rem;
  color: #ccc;
  padding: 0 1rem 1.5rem;
}

/* ===== COLORES PARTICULARES ===== */
.fecha-8S .tag { color: #c72626; }      /* rojo */
.fecha-11F .tag { color: #4caf50; }     /* verde */
.fecha-20R .tag { color: #ffbf00; }     /* dorado */
.fecha-29L .tag { color: #e67e22; }     /* naranja */

/* ===== RESPONSIVE ESPACIADO ===== */
@media (max-width: 480px) {
  .fechas-especiales {
    padding: 2.5rem 1rem;
  }

  .fechas-especiales h2 {
    font-size: 1.6rem;
  }
}

.contacto {
  padding: 4rem 1.5rem;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.contacto h2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contacto .subtitulo {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2.5rem;
}

.formulario-contacto {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario-contacto input,
.formulario-contacto select,
.formulario-contacto textarea {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: #2c2c2c;
  color: #fff;
}

.formulario-contacto select {
  appearance: none;
}

.formulario-contacto textarea {
  resize: vertical;
}

.formulario-contacto button {
  background-color: #e1b347;
  color: #1a1a1a;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-contacto button:hover {
  background-color: #f2cb59;
}

.info-extra {
  font-size: 0.9rem;
  color: #999;
  margin-top: 2rem;
}


.trabaja-con-nosotros {
  background-color: #000;
  color: #f0f0f0;
  padding: 4rem 1.5rem;
  text-align: center;
}

.trabaja-con-nosotros h2 {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  color: #e1b347;
  margin-bottom: 1.5rem;
}

.trabaja-con-nosotros p {
  max-width: 700px;
  margin: 0 auto 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.proximamente-box {
  background-color: #1c1c1c;
  border: 2px dashed #e1b347;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.proximamente-box h3 {
  color: #e1b347;
  margin-bottom: 1rem;
}

.proximamente-box p {
  color: #bbb;
}

.etiqueta {
  display: inline-block;
  margin-top: 1.2rem;
  background-color: #e1b347;
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

#promo-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.popup-content {
  background-color: #1c1c1c;
  border: 2px solid #e1b347;
  color: #fff;
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  position: relative;
}

.popup-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 1rem;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.promo-button {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #e1b347;
  color: #1c1c1c;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}





.popup-destacado {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content-destacado {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

.popup-img-destacado {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
}

.popup-title {
  font-family: "lora";
  font-weight: 700;
  font-size: 20px;
  color: #d3a73f;
  margin-bottom: 10px;
}

.popup-desc {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}


/* Estructura general */
.pastas-section {
  background-color: #000;
  padding: 40px 20px;
  color: #F0ECE3;
  font-family: 'Lato', sans-serif;
}

.pastas-section h2 {
  font-size: 26px;
  color: #D4AC2B;
  text-align: center;
  margin-bottom: 12px;
}

.subtitulo {
  font-size: 15px;
  color: #F0ECE3;
  text-align: center;
  margin-bottom: 40px;
}

/* Bloque por categoría */
.bloque-carrusel {
  margin-bottom: 50px;
  background-color: #111;
  padding: 20px 16px;
  border-radius: 16px;
  border: 1px solid #D4AC2B;
}

.mini-titulo {
  display: block;
  font-size: 12px;
  color: #E5CFA3;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bloque-carrusel h3 {
  font-size: 18px;
  color: #D4AC2B;
  margin-bottom: 16px;
}

/* Carrusel */
.carrusel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carrusel::-webkit-scrollbar {
  display: none;
}

/* Card elegante */
.card-pasta {
  flex: 0 0 80%;
  max-width: 80%;
  background-color: #333;
  border-radius: 18px;
  padding: 16px;
  scroll-snap-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #000;
  transition: transform 0.3s ease;
}

.card-pasta img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.card-pasta h4 {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 700;
  text-align: center;
}

.card-pasta p {
  font-size: 14px;
  color: #fff;
}
@media (min-width: 768px) {
  .card-pasta {
    width: 400px;
    max-width: 400px;
    flex: 0 0 auto;
  }
}


/* Botón */
.btn-popup {
  background-color: #D4AC2B;
  color: #000;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 10px auto 0;
}

.btn-popup:hover {
  background-color: #b89425;
}

/* POPUP */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background-color: #000;
  padding: 30px;
  border-radius: 14px;
  width: 85%;
  max-width: 400px;
  color: #F0ECE3;
  position: relative;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
  font-family: 'Lato', sans-serif;
  text-align: center;
}

.popup-content h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #D4AC2B;
  text-align: center;
}

.popup-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.popup-content .frase-destacada {
  font-weight: bold;
  text-align: center;
  font-size: 15px;
  margin: 20px 0;
  color: #fff;
  border-top: 1px solid #555;
  padding-top: 15px;
}

.popup-footer {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
}

.popup-footer a {
  color: #F0ECE3;
  text-decoration: underline;
}

.popup-footer a:hover {
  color: #D4AC2B;
}
.logo-popup {
  width: 80px;
  margin-bottom: 10px;
  filter: brightness(90%);
 display: block;
  margin: 0 auto 20px;

}


.btn-salsas {
  background-color: #D4AC2B;
  color: #000;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  margin: 0px auto 50px;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(212, 172, 43, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-salsas:hover {
  background-color: #b89425;
  transform: scale(1.03);
}



.grid-postres {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
  padding: 20px;
}
.card-postres {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  max-width: 200px;
}

.card-postres img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.card-postres h4 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #d4a44a;
  margin: 5px 0;
}

.card-postres p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: white;
  margin: 0;
}


@media (min-width: 768px) {
  .grid-postres {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid-postres {
    grid-template-columns: repeat(4, 1fr);
  }

}
@media (max-width: 600px) {
  .card-postres h3 {
    font-size: 1rem;
  }
}

.video-promo {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  object-fit: cover;
  max-height: 300px;
}
