@charset "UTF-8";
/* -----------------------------------
   VARIABLES DE SOMBRAS Y RADIOS
----------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fdf3e7;
  color: #111111;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

/* -----------------------------------
   TIPOGRAFÍA Y TÍTULOS
----------------------------------- */
h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.seccion-titulo {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* -----------------------------------
   SECCIONES CON FONDO SUAVE
----------------------------------- */
.section-bg {
  background-color: #fff7ef;
  padding: 40px 0;
  border-radius: 12px;
  margin-bottom: 40px;
}
.section-bg .card {
  background-color: #ffffff;
}

/* -----------------------------------
   IMÁGENES
----------------------------------- */
.carrusel-img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  min-height: 420px;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Imágenes de promociones (enteras, sin recorte) */
.promo-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #ffffff;
}

/* -----------------------------------
   CAPTION DEL CARRUSEL
----------------------------------- */
.carousel-caption {
  background-color: rgba(255, 255, 255, 0.5);
  color: #111111;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
}
.carousel-caption h2,
.carousel-caption p {
  color: #111111;
  text-shadow: none;
}

/* -----------------------------------
   NAVBAR
----------------------------------- */
.navbar {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.navbar .navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.navbar .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  padding-inline: 0.9rem;
  transition: color 0.2s ease, opacity 0.2s ease;
  position: relative;
  z-index: 1;
}
.navbar .navbar-nav .nav-link:hover {
  opacity: 0.75;
}
.navbar .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  top: -2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  transform: scale(0.6);
  opacity: 0;
  transition: 0.2s ease;
  z-index: -1;
}
.navbar .navbar-nav .nav-link:hover::before {
  transform: scale(1);
  opacity: 1;
}
.navbar .navbar-nav .nav-link.active {
  color: #ffc107;
}

/* -----------------------------------
   esto es para las CARDS
----------------------------------- */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(255, 193, 7, 0.35);
  background-color: rgba(255, 193, 7, 0.08);
}
.card:hover .btn-dark {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #111;
}

/* -----------------------------------
   este es el BOTÓN WHATSAPP
----------------------------------- */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

/* -----------------------------------
   las opciones del MENÚ
----------------------------------- */
.categoria-label {
  cursor: default;
  pointer-events: none;
  opacity: 0.85;
  user-select: none;
}
.categoria-label:hover {
  background-color: inherit !important;
  color: inherit !important;
}

/* -----------------------------------
   LAYOUT FLEX PARA EL MENÚ
----------------------------------- */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.menu-grid > .col-12 {
  flex: 0 1 320px;
}

/* -----------------------------------
   ANCLA EN PROMOS (para resaltar la card)
----------------------------------- */
:target .card {
  position: relative;
  transform: translateY(-8px);
  border: 10px solid #00bfff;
  box-shadow: 0 0 28px rgba(0, 191, 255, 0.6);
  background-color: rgba(0, 191, 255, 0.1);
}

:target .card::after {
  content: "Promo seleccionada";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #00bfff;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.8);
}

/* -----------------------------------
   FORMULARIO CONTACTO
----------------------------------- */
.formulario-contenedor {
  background-color: #f0f0f0;
  padding: 25px;
  border-radius: 12px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.formulario-contenedor:hover {
  background-color: #d9d9d9;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Smartphones  (pantallas chicas) */
@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .seccion-titulo {
    font-size: 1.7rem;
  }
  .carousel-caption {
    padding: 10px;
  }
  .carousel-caption h2 {
    font-size: 1.4rem;
  }
  .carousel-caption p {
    font-size: 0.95rem;
  }
  /* Menú cards */
  .card-img {
    height: 150px; /* antes 200px */
  }
  /* Promos */
  .promo-img {
    height: 200px; /* antes 300px */
  }
}
/* Tablets */
@media (max-width: 768px) {
  .card-img {
    height: 180px;
  }
}

/*# sourceMappingURL=style.css.map */
