/* === FRONT PAGE === */

/* ===== HERO (Portada) ===== */
.landing-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 50px;
  background-color: #fff;
  margin-top: 0px;
}


.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
  box-sizing: border-box;
}

.hero-image {
  flex: 1 1 400px;
  max-width: 600px;
  box-sizing: border-box;
  margin: 0;
}


.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.hero-text h1 {
  font-size: 60px;
  line-height: 1.2;
  color: #0a4736;
  margin-bottom: 30px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  font-size: 25px;
  color: #333;
}

.hero-list li {
  margin-bottom: 12px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline,
.btn-fill {
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 30px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 2px solid #0a4736;
  color: #0a4736;
  background-color: #fff;
}

.btn-outline:hover {
  background-color: #0a4736;
  color: white;
}





/* ===== Menú del día */
.menu-dia {
  padding: 60px 40px;
  background-color: white;
  text-align: center;
}

.menu-dia h2 {
  font-size: 50px;
  margin-bottom: 40px;
  color: #0a4736;
}

.menu-plugin-wrap {
  max-width: 1000px;
  margin: 0 auto;
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-outline,
  .btn-fill {
    width: 100%;
    max-width: 250px;
  }

  .hero-image img {
    max-width: 100%;
    margin-top: 30px;
  }

  .menu-cards {
    flex-direction: column;
    align-items: center;
  }
}







/*PRODUCTOS DESTACADOS*/

.productos-destacados {
  padding: 60px 40px;
  background-color: #fff;
  text-align: center;
  background-color: white;
}

.productos-destacados h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #0a4736;
}

.productos-plugin-wrap {
  max-width: 1000px;
  margin: 0 auto;
}






/*MAPA*/
.donde-estamos {
  padding: 80px 40px;
  background-color: white;
}

.estamos-contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%; /* 👈 ocupa todo el ancho disponible */
  padding-left: 80px;
  padding-right: 40px;
  gap: 60px;
  box-sizing: border-box;
}

.estamos-texto {
  flex: 1 1 40%;
  max-width: 550px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.estamos-texto h2 {
  font-size: 48px;
  color: #0a4736;
  margin-bottom: 20px;
}

.estamos-desc {
  font-size: 22px;
  color: #333;
  margin-bottom: 25px;
}

.estamos-mapa {
  flex: 1 1 55%;
  min-width: 400px;
  max-width: 100%;
  box-sizing: border-box;
}

.estamos-mapa iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
}

.btn-outline:visited {
  border: 2px solid #0a4736;
  color: #0a4736;
  background-color: #fff;
}

.btn-outline:visited:hover {
  background-color: #0a4736;
  color: white;
}


/* Por defecto mostrar solo desktop */
.mapa-mobile {
  display: none;
}

/* Mobile first: mostrar solo el mapa pequeño */
.mapa-desktop { display: none; }
.mapa-mobile  { display: block; }

/* A partir de tablet/desktop, mostrar el grande y ocultar el pequeño */
@media (min-width: 768px) {
  .mapa-desktop { display: block; }
  .mapa-mobile  { display: none; }
}

