header {
  background-color: #FAF0E6;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
header h1 {
  color: #DAA520;
  font-family: "Pacifico", cursive;
  font-size: 3em;
  margin: 0 0 10px 0;
}
header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
header nav ul li {
  margin: 0 15px;
}
header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
header nav ul li a:hover {
  color: #DAA520;
}
header nav ul li a.active {
  color: #A0522D;
  text-decoration: underline;
  cursor: default;
}

.hero {
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/banner.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  z-index: -1;
  transform: scale(1.02);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero-content h1 {
  font-family: "Pacifico", cursive;
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-content p {
  font-size: 1.5em;
  max-width: 600px;
  margin: 0 auto 30px auto;
}
.hero a.bottom {
  padding: 15px 30px;
  background-color: #DAA520;
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Arial", sans-serif;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.hero a.bottom:hover {
  background-color: #c68b00;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.contenedor-productos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 20px;
}
.contenedor-productos > div {
  box-sizing: border-box;
  text-align: center;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.contenedor-productos > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.contenedor-productos > div h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #333;
  font-size: 0.95em;
  line-height: 1.2;
  overflow-wrap: break-word;
}
.contenedor-productos > div img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#nuestros-sabores h2, #nuestros-sabores h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #555;
}

.primera-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.boton-comprar {
  background-color: #DAA520;
  color: #FFFFFF;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}
.boton-comprar:hover {
  background-color: #C1921E;
}

.main-contacto {
  padding: 40px 20px;
}
.main-contacto h1 {
  text-align: center;
  color: #DAA520;
  font-family: "Pacifico", cursive;
  font-size: 2.8em;
  margin-bottom: 15px;
}

.intro-contacto {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contenedor-grid-contacto {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.seccion-formulario h2,
.seccion-info-directa h2 {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.form-grupo {
  margin-bottom: 15px;
}
.form-grupo label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
}
.form-grupo input[type=text],
.form-grupo input[type=email],
.form-grupo textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #888;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.boton-enviar {
  background-color: #DAA520;
  color: #FFFFFF;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin-top: 15px;
}
.boton-enviar:hover {
  background-color: #C1921E;
  transform: translateY(-2px);
}

.seccion-info-directa {
  text-align: center;
}
.seccion-info-directa p {
  margin-bottom: 10px;
  color: #666;
  line-height: 1.6;
}
.seccion-info-directa ul {
  text-align: left;
  display: inline-block;
}
.seccion-info-directa ul li {
  margin-bottom: 8px;
  color: #333;
}
.seccion-info-directa ul li a {
  color: #DAA520;
  text-decoration: none;
  font-weight: bold;
}
.seccion-info-directa ul li a:hover {
  text-decoration: underline;
}
.seccion-info-directa h2:nth-of-type(2) {
  margin-top: 30px;
}

.seccion-mapa {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0;
  width: 100%;
}
.seccion-mapa h2 {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.8em;
  text-align: center;
}
.seccion-mapa p {
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}
.seccion-mapa iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  margin: 0;
}

@media (max-width: 767px) {
  .seccion-mapa iframe {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .contenedor-grid-contacto {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .main-contacto h1 {
    font-size: 2.2em;
  }
  .seccion-formulario h2,
  .seccion-info-directa h2,
  .seccion-mapa h2 {
    font-size: 1.5em;
  }
}
@media (max-width: 480px) {
  .main-contacto {
    padding: 20px 10px;
  }
  .intro-contacto {
    font-size: 0.9em;
  }
}
footer {
  background-color: #333;
  color: #FFFFFF;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}
footer p {
  color: #eee;
  margin-bottom: 10px;
}
footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
}
footer .social-icon {
  color: #DAA520;
  font-size: 2em;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
footer .social-icon:hover {
  color: #E84F0E;
  transform: scale(1.1);
}

.main-ofertas {
  padding: 20px;
  background-color: #FAF0E6;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.main-ofertas p.text-center {
  font-size: 1.1em;
  color: #666;
  max-width: 800px;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

#ofertasCarousel {
  overflow: hidden;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 6px;
  padding: 5px 8px;
  bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
.carousel-caption h5 {
  color: #DAA520;
  font-family: "Pacifico", cursive;
  font-size: 0.8em;
  margin-bottom: 2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
.carousel-caption p {
  font-size: 0.65em;
  line-height: 1.1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  color: #f0f0f0;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel-caption .antiguo-precio {
  color: #FF6347;
  font-size: 0.6em;
  text-decoration: line-through;
  margin-bottom: 1px;
}
.carousel-caption .precio-actual {
  color: #32CD32;
  font-weight: bold;
  font-size: 0.6em;
  margin-top: 1px;
  margin-bottom: 2px;
}
.carousel-caption .btn {
  padding: 3px 8px;
  font-size: 0.65em;
  margin-top: 3px;
  background-color: #f0ad4e;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(218, 165, 32, 0.7);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  width: 20px;
  height: 20px;
  background-size: 50% 50%;
}

.info-promocion-general {
  background-color: #F0F0F0;
  color: #555;
  padding: 20px;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.info-promocion-general p {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .info-promocion-general {
    padding: 15px;
    font-size: 0.9em;
  }
}
.seccion-cupcakes-descuento .card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.seccion-cupcakes-descuento .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.seccion-cupcakes-descuento .card-img-top {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.seccion-cupcakes-descuento .card-body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.seccion-cupcakes-descuento .card:active {
  transform: scale(0.98);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}/*# sourceMappingURL=estilos.css.map */