.seo-texto {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.seo-texto h2 {
 display: inline-block;
  padding: 0;
  border-radius: 5px;
  border: 3px solid #000080;
  color: darkred;
  font-weight: bold;
  box-shadow: 0px 0px 15px 5px rgba(0, 150, 0, 1.7);
  margin-top: -10px;
  margin-bottom: 15px;
}

.titulo-principal {
  text-align: center;
  font-weight: 550;
	
}

.titulo-principal .linea-1 {
  display: block;
  font-size: 18px;
}

.titulo-principal .linea-2 {
  display: block;
  font-size: 20px;
  color: #ff3b3b; /* opcional */
}


/* SECCION SABORES (Tortas Bombardas) */
#sabores {
  text-align: center;
  padding-top: 40px;
	
}

#sabores h3 {
  display: inline-block;
  padding: 0;
  border-radius: 5px;
  border: 3px solid #000080;
  color: darkred;
  font-weight: bold;
  box-shadow: 0px 0px 15px 5px rgba(0, 150, 0, 1.7);
  margin-top: -10px;
  margin-bottom: 15px;
}

/* Fila de sabores */
.fila-sabores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
  align-items: start;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

/* Tarjeta de producto */
.sabor-item {
  position: relative;
  width: 195px;
  height: 200px; /* aumentado para dar espacio */
  margin: 5px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 15px;
  border: 4px solid #000080;
  box-shadow: 0px 0px 15px 8px rgba(0, 150, 0, 1.7);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.sabor-item:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 25px 10px rgba(0, 150, 0, 0.9);
}

.sabor-item img {
  width: 100%;
  height: calc(100% - 50px); /* 40px (barra) + 10px (padding) */
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.sabor-item:hover img {
  transform: scale(1.07);
}

/* Barra verde de información */
.info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #1B5E20;
  color: white;
  font-size: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Precios rojos */
.precio-rojo {
  color: red;
  font-weight: bold;
  margin-left: 5px;
}

/* Botones Ver Más / Menos */
.ver-mas {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.btn-ver-mas,
.btn-ver-menos {
  display: inline-block;
  background-color: #FFA500;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 auto;
}

.btn-ver-mas:hover,
.btn-ver-menos:hover {
  background-color: #FF8C00;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .fila-sabores {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .fila-sabores {
    grid-template-columns: 1fr;
  }
}
