@charset "utf-8";
/* CSS Document */

/* ====== CONTENIDO PRINCIPAL ====== */

.content-section {
  background-color: #fff;
  color: #000;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.content-container {
  max-width: 980px;
  margin: 0 auto;
}

.content-container h1 {
  font-size: 36px;
  color: #d92c20;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.content-container h2 {
  font-size: 22px;
  color: #02b1f4;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
}

.content-container p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.content-container a {
  color: #02b1f4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.content-container a:hover {
  color: #000;
  border-bottom: 2px solid #02b1f4;
}

/* ====== BLOQUES DE HISTORIA ====== */

.story-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.story-block.reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1;
}

.story-image {
  flex: 1;
  text-align: center;
}

.story-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ====== RESPONSIVO ====== */

@media (max-width: 768px) {
  .story-block {
    flex-direction: column;
    text-align: center;
  }

  .story-block.reverse {
    flex-direction: column;
  }

  .story-image img {
    max-width: 100%;
  }

  .content-container h1 {
    font-size: 28px;
  }

  .content-container h2 {
    font-size: 18px;
  }
}


/* -- menu -- */
.menu-cards-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.menu-cards-section h1 {
  font-size: 2.2em;
  color: #111;
  border-bottom: 3px solid #fbcf00;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.menu-cards-section h2 {
  font-size: 1.6em;
  color: #02b1f4;
  margin-bottom: 40px;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-items: center;
}

.menu-card {
  background-color: #fffbea;
  border: 2px solid #fbcf00;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 320px;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.menu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 2px solid #fbcf00;
}

.menu-card-content {
  padding: 20px;
}

.menu-card h3 {
  font-size: 1.3em;
  color: #111;
  margin-bottom: 8px;
}

.menu-card .ingredientes {
  color: #444;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.menu-card .precios {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-card .precios span {
  background-color: #02b1f4;
  color: #fff;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.9em;
  transition: background-color 0.3s;
}

.menu-card .precios span:hover {
  background-color: #028ac0;
}

/* Responsivo */
@media (max-width: 500px) {
  .menu-card img {
    height: 160px;
  }

  .menu-card-content {
    padding: 15px;
  }

  .menu-card h3 {
    font-size: 1.2em;
  }

  .menu-card .precios span {
    font-size: 0.85em;
  }
}


/* sucursales */

.sucursales {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.sucursales h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #000;
}

.sucursales .intro {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 40px;
}

.sucursal {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #fff8d5;
  border: 2px solid #000;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  transition: transform 0.2s ease;
}

.sucursal:hover {
  transform: translateY(-4px);
}

.sucursal-info {
  flex: 1 1 400px;
  padding: 30px;
  text-align: left;
}

.sucursal-info h2 {
  color: #d60000;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.sucursal-info p {
  margin: 8px 0;
  color: #222;
}

.btn-mapa {
  display: inline-block;
  background: #02b1f4;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.btn-mapa:hover {
  background: #028ec0;
}

.sucursal-mapa {
  flex: 1 1 400px;
  min-height: 250px;
}

.sucursal iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .sucursal {
    flex-direction: column;
  }
  .sucursal-info {
    text-align: center;
  }
}

/* Contacto */.fiestas {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
}

.contenedor-fiestas h1 {
  text-align: center;
  color: #000;
  font-size: 2em;
  margin-bottom: 10px;
}

.contenedor-fiestas .intro {
  text-align: center;
  font-size: 1.1em;
  color: #333;
  margin-bottom: 25px;
}

.contenedor-fiestas p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.form-fiestas {
  background: #fff8d5;
  border: 2px solid #000;
  border-radius: 16px;
  padding: 30px;
}

.form-grupo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-grupo label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #000;
}

.form-grupo input,
.form-grupo textarea {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.form-grupo input:focus,
.form-grupo textarea:focus {
  border-color: #02b1f4;
  outline: none;
}

.btn-enviar {
  background: #fbcf00;
  color: #000;
  font-weight: bold;
  border: 2px solid #000;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1em;
  transition: all 0.2s ease;
}

.btn-enviar:hover {
  background: #02b1f4;
  color: #fff;
  border-color: #02b1f4;
}

@media (max-width: 600px) {
  .form-fiestas {
    padding: 20px;
  }
  .btn-enviar {
    width: 100%;
  }
}


/* mensaje enviado */

.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}


/* Éxito */
.form-message.success {
  background-color: #d9f9d9;
  border: 2px solid #29a329;
  color: #176117;
}

/* Error */
.form-message.error {
  background-color: #ffe5e5;
  border: 2px solid #ff4d4d;
  color: #b30000;
}

.PromoAclaracion { 
	width:90%;
	background:#bdebe8;
	padding:25px; margin:25px auto;
	border-radius:16px;
	border-color:#000 1px solid;
	text-align:center;
}


/*Columnas Promociones */
/* --- ESTILOS GENERALES PARA LOS BLOQUES --- */
.grid {
    display: grid;
    gap: 15px; /* separación entre columnas */
    margin-bottom: 20px; /* separación entre bloques */
    padding: 0;
}

/* 3 columnas en escritorio */
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 2 columnas en escritorio */
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Cada elemento */
.grid-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imágenes centradas y responsivas */
.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;  /* evita deformación */
}

/* --- RESPONSIVO MÓVIL --- */
@media (max-width: 768px) {
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr !important; /* solo una columna */
    }
}
