@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #3D2B2B;
  background-color: #E8A0A0;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

[id] {
  scroll-margin-top: calc(80px + 1rem);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .container {
    padding-inline: 2rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.titulo-manuscrito {
  font-family: "Dancing Script", cursive;
  font-size: 2.6rem;
  font-weight: 700;
  color: #B94E5C;
  line-height: 1.2;
  text-align: center;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background-color: rgba(255, 248, 242, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(61, 43, 43, 0.06);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.navbar.is-scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(61, 43, 43, 0.08);
}
.navbar__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .navbar__inner {
    padding-inline: 2rem;
  }
}
.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.navbar__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.navbar__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .navbar__logo-img {
    height: 60px;
  }
}
.navbar__links {
  display: none;
}
@media (min-width: 992px) {
  .navbar__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}
.navbar__link {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #3D2B2B;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}
.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #E8A33D;
  transition: width 0.2s ease;
}
.navbar__link:hover {
  color: #B94E5C;
}
.navbar__link:hover::after {
  width: 100%;
}
.navbar__link--active {
  color: #B94E5C;
}
.navbar__link--active::after {
  width: 100%;
}
.navbar__cta {
  display: none;
}
@media (min-width: 992px) {
  .navbar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background-color: #B94E5C;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }
  .navbar__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(185, 78, 92, 0.2);
    background-color: #8F3A45;
  }
  .navbar__cta:active {
    transform: translateY(-1px);
  }
  .navbar__cta {
    display: inline-flex;
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
  }
}
.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  width: 32px;
  height: 24px;
  z-index: 1100;
}
@media (min-width: 992px) {
  .navbar__toggle {
    display: none;
  }
}
.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #B94E5C;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.navbar__toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.navbar__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(78vw, 320px);
  background-color: #FFFFFF;
  box-shadow: -8px 0 30px rgba(61, 43, 43, 0.15);
  padding: calc(80px + 2rem) 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1rem;
}
.navbar__mobile-menu.is-open {
  transform: translateX(0);
}
@media (min-width: 992px) {
  .navbar__mobile-menu {
    display: none;
  }
}
.navbar__mobile-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3D2B2B;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(61, 43, 43, 0.1);
}
.navbar__mobile-link:hover {
  color: #B94E5C;
}
.navbar__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background-color: #B94E5C;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.navbar__mobile-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(185, 78, 92, 0.2);
  background-color: #8F3A45;
}
.navbar__mobile-cta:active {
  transform: translateY(-1px);
}
.navbar__mobile-cta {
  margin-top: 1rem;
  width: 100%;
}
.navbar__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(61, 43, 43, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 1040;
}
.navbar__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.footer {
  background-color: #3D2B2B;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
}
.footer__grid {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .footer__grid {
    padding-inline: 2rem;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}
.footer__logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.footer__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  margin-bottom: 1rem;
}
.footer__redes {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.footer__red-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.footer__red-link img, .footer__red-link svg {
  width: 18px;
  height: 18px;
}
.footer__red-link:hover {
  background-color: #B94E5C;
  transform: translateY(-3px);
}
.footer__titulo {
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer__links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.7rem;
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #E8A33D;
}
.footer__mapa {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.footer__mapa iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.footer__direccion {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
.footer__firma {
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.footer__firma:hover {
  opacity: 1;
}
.footer__firma img {
  height: 28px;
  width: auto;
  display: block;
}

.hero-carousel {
  width: 100%;
  height: 60vh;
  min-height: 380px;
  max-height: 620px;
  margin-top: 80px;
}
@media (min-width: 768px) {
  .hero-carousel {
    height: 75vh;
  }
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}
.hero-carousel__slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61, 43, 43, 0.05) 0%, rgba(61, 43, 43, 0.35) 65%, rgba(61, 43, 43, 0.55) 100%);
}
.hero-carousel__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 2rem 1rem 4rem;
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .hero-carousel__caption {
    padding: 4rem 2rem 6rem;
    text-align: left;
    max-width: 640px;
    left: 8%;
  }
}
.hero-carousel__caption-title {
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .hero-carousel__caption-title {
    font-size: 3.4rem;
  }
}
.hero-carousel__caption-text {
  font-size: 1rem;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero-carousel__caption-text {
    margin-inline: 0;
    font-size: 1.15rem;
  }
}
.hero-carousel .btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background-color: #E8A33D;
  color: #3D2B2B;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.hero-carousel .btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(185, 78, 92, 0.2);
  background-color: #8F3A45;
}
.hero-carousel .btn-hero:active {
  transform: translateY(-1px);
}
.hero-carousel .carousel-indicators {
  bottom: 14px;
  z-index: 3;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 0.5;
  margin: 0 4px;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hero-carousel .carousel-indicators .active {
  opacity: 1;
  transform: scale(1.3);
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 6%;
  opacity: 0.85;
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 1.8rem;
  height: 1.8rem;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}

.hero-features {
  background-color: #FFFFFF;
  padding: 4rem 0;
  box-shadow: 0 4px 20px rgba(61, 43, 43, 0.08);
}
.hero-features__grid {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .hero-features__grid {
    padding-inline: 2rem;
  }
}
.hero-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}
.hero-features__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.hero-features__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #F2D8C4;
  margin-bottom: 0.5rem;
}
.hero-features__icon img, .hero-features__icon svg {
  width: 32px;
  height: 32px;
}
.hero-features__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #B94E5C;
}
.hero-features__text {
  font-size: 0.875rem;
  color: #7A6660;
  max-width: 260px;
}
.hero-features__mercadopago {
  height: 50px;
  width: auto;
  margin-top: 0.5rem;
}

.productos {
  padding: 6rem 0;
}
.productos__header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .productos__header {
    padding-inline: 2rem;
  }
}
.productos__header {
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 992px) {
  .productos__header {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
}
.productos__logo {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(61, 43, 43, 0.08);
  overflow: hidden;
}
@media (min-width: 992px) {
  .productos__logo {
    width: 350px;
    height: 350px;
  }
}
.productos__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.productos__titulo {
  font-family: "Dancing Script", cursive;
  font-size: 3.2rem;
  font-weight: 700;
  color: #B94E5C;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 0;
  flex: 1;
}

.producto-seccion {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .producto-seccion {
    padding-inline: 2rem;
  }
}
.producto-seccion {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  padding-block: 4rem;
}
@media (min-width: 992px) {
  .producto-seccion {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.producto-seccion:not(:last-child) {
  border-bottom: 1px solid rgba(61, 43, 43, 0.1);
}
.producto-seccion__imagen {
  display: flex;
  justify-content: center;
  align-items: center;
}
.producto-seccion__imagen figure {
  width: 350px;
  max-width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(61, 43, 43, 0.12);
}
.producto-seccion__imagen figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.producto-seccion__imagen figure:hover img {
  transform: scale(1.08);
}
.producto-seccion__imagen figure {
  margin-inline: auto;
}
.producto-seccion__contenido {
  text-align: center;
}
@media (min-width: 992px) {
  .producto-seccion__contenido {
    text-align: left;
  }
}
.producto-seccion__titulo {
  font-family: "Dancing Script", cursive;
  font-size: 2.6rem;
  font-weight: 700;
  color: #B94E5C;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.producto-seccion__texto {
  color: #7A6660;
  margin-bottom: 1rem;
  max-width: 480px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .producto-seccion__texto {
    margin-inline: 0;
  }
}
.producto-seccion__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background-color: #B94E5C;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.producto-seccion__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(185, 78, 92, 0.2);
  background-color: #8F3A45;
}
.producto-seccion__btn:active {
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  .producto-seccion--reverse .producto-seccion__imagen {
    order: -1;
  }
  .producto-seccion--reverse .producto-seccion__contenido {
    order: 0;
  }
}
body.page-desayunos {
  background-color: #EDB0B0;
}

body.page-picadas {
  background-color: #EDB0B0;
}

body.page-regalos {
  background-color: #EDB0B0;
}

body.page-box-dulces {
  background-color: #F0BBBB;
}

.detalle-titulo {
  font-family: "Dancing Script", cursive;
  font-size: 3.2rem;
  font-weight: 700;
  color: #B94E5C;
  line-height: 1.2;
  text-align: center;
  padding-top: 6rem;
  margin-bottom: 4rem;
}

.producto-detalle {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .producto-detalle {
    padding-inline: 2rem;
  }
}
.producto-detalle {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  padding-block: 4rem;
}
@media (min-width: 992px) {
  .producto-detalle {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.producto-detalle:not(:last-child) {
  border-bottom: 1px solid rgba(61, 43, 43, 0.1);
}
@media (min-width: 992px) {
  .producto-detalle--reverse .producto-detalle__media {
    order: 2;
  }
  .producto-detalle--reverse .producto-detalle__contenido {
    order: 1;
  }
}
.producto-detalle--destacado {
  background-color: rgba(232, 163, 61, 0.16);
  border-radius: 24px;
  padding: 2rem;
  border-bottom: none !important;
}
.producto-detalle--destacado .producto-detalle__nombre {
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #B94E5C;
  line-height: 1.2;
}
.producto-detalle--destacado .producto-detalle__precio {
  color: #B94E5C;
}
.producto-detalle--destacado .producto-detalle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background-color: #E8A33D;
  color: #3D2B2B;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.producto-detalle--destacado .producto-detalle__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(185, 78, 92, 0.2);
  background-color: #8F3A45;
}
.producto-detalle--destacado .producto-detalle__btn:active {
  transform: translateY(-1px);
}
.producto-detalle--destacado-princesas {
  background-color: #E8D5F5;
  border-radius: 24px;
  padding: 2rem;
  border-bottom: none !important;
}
.producto-detalle--destacado-princesas .producto-detalle__nombre {
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #6B2D8B;
  line-height: 1.2;
}
.producto-detalle--destacado-princesas .producto-detalle__ingredientes-titulo {
  color: #6B2D8B;
}
.producto-detalle--destacado-princesas .producto-detalle__ingredientes li {
  color: #6B2D8B;
}
.producto-detalle--destacado-princesas .producto-detalle__precio {
  color: #6B2D8B;
}
.producto-detalle--destacado-princesas .producto-detalle__precio span {
  color: #9B59B6;
}
.producto-detalle--destacado-princesas .producto-detalle__btn {
  background-color: #9B59B6;
  color: #FFFFFF;
}
.producto-detalle--destacado-princesas .producto-detalle__btn:hover {
  background-color: #6B2D8B;
}
.producto-detalle__media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.producto-detalle__carousel {
  width: 350px;
  max-width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(61, 43, 43, 0.12);
}
.producto-detalle__carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.producto-detalle__carousel:hover img {
  transform: scale(1.08);
}
.producto-detalle__carousel {
  cursor: zoom-in;
}
.producto-detalle__carousel .carousel-inner,
.producto-detalle__carousel .carousel-item {
  height: 100%;
}
.producto-detalle__carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.producto-detalle__carousel .carousel-control-prev,
.producto-detalle__carousel .carousel-control-next {
  width: 15%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.producto-detalle__carousel .carousel-control-prev-icon,
.producto-detalle__carousel .carousel-control-next-icon {
  width: 1.3rem;
  height: 1.3rem;
}
.producto-detalle__carousel .carousel-indicators {
  margin-bottom: 0.6rem;
}
.producto-detalle__carousel .carousel-indicators [data-bs-target] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 0.6;
  margin: 0 3px;
}
.producto-detalle__carousel .carousel-indicators .active {
  opacity: 1;
}
.producto-detalle:hover .producto-detalle__carousel .carousel-control-prev, .producto-detalle:hover .producto-detalle__carousel .carousel-control-next {
  opacity: 0.85;
}
.producto-detalle__thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.producto-detalle__thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.producto-detalle__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.producto-detalle__thumb:hover, .producto-detalle__thumb.is-active {
  opacity: 1;
  border-color: #B94E5C;
}
.producto-detalle__contenido {
  text-align: center;
}
@media (min-width: 992px) {
  .producto-detalle__contenido {
    text-align: left;
  }
}
.producto-detalle__nombre {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #3D2B2B;
  margin-bottom: 0.5rem;
}
.producto-detalle__ingredientes-titulo {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #B94E5C;
  margin-bottom: 0.4rem;
}
.producto-detalle__ingredientes {
  list-style: disc;
  padding-left: 1.2rem;
  color: #7A6660;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 420px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .producto-detalle__ingredientes {
    margin-inline: 0;
  }
}
.producto-detalle__ingredientes li {
  margin-bottom: 0.3rem;
}
.producto-detalle__precio {
  font-weight: 700;
  font-size: 2.2rem;
  color: #B94E5C;
  margin-bottom: 1rem;
}
.producto-detalle__precio span {
  font-size: 1rem;
  font-weight: 400;
  color: #7A6660;
  margin-left: 0.4rem;
}
.producto-detalle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background-color: #B94E5C;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.producto-detalle__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(185, 78, 92, 0.2);
  background-color: #8F3A45;
}
.producto-detalle__btn:active {
  transform: translateY(-1px);
}

.modal-zoom .modal-content {
  background: transparent;
  border: none;
}
.modal-zoom .modal-body {
  padding: 0;
}
.modal-zoom .btn-close {
  position: absolute;
  top: -40px;
  right: 0;
  filter: invert(1);
  opacity: 0.9;
  z-index: 2;
}
.modal-zoom .carousel-item img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
}
.modal-zoom .carousel-control-prev-icon,
.modal-zoom .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
}

body.page-quienes-somos {
  background-color: #EDB0B0;
}

body.page-terminos {
  background-color: #F2C0C0;
}

.terminos-wrap {
  padding-top: calc(80px + 3rem);
  padding-bottom: 6rem;
}

.terminos-inner {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.terminos__titulo {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  font-weight: 700;
  color: #B94E5C;
  margin-bottom: 0.3rem;
}

.terminos__fecha {
  font-size: 0.875rem;
  color: #7A6660;
  margin-bottom: 3rem;
}

.terminos__seccion {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(61, 43, 43, 0.08);
}
.terminos__seccion:last-child {
  border-bottom: none;
}

.terminos__subtitulo {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3D2B2B;
  margin-bottom: 0.75rem;
}

.terminos-inner p {
  color: #7A6660;
  line-height: 1.8;
  font-size: 1rem;
}
.terminos-inner p strong {
  color: #3D2B2B;
}
.terminos-inner p a {
  color: #B94E5C;
  text-decoration: underline;
}

body.page-pedidos {
  background-color: #2E1A1F;
  min-height: 100vh;
}

.pedidos-hero {
  padding-top: calc(80px + 4rem);
  padding-bottom: 6rem;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .pedidos-hero {
    padding-inline: 2rem;
  }
}
.pedidos-hero {
  text-align: center;
}
.pedidos-hero__titulo {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  color: #F2D8C4;
  margin-bottom: 0.5rem;
}
.pedidos-hero__subtitulo {
  color: rgba(242, 216, 196, 0.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin-inline: auto;
}

.pedidos-form-wrap {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .pedidos-form-wrap {
    padding-inline: 2rem;
  }
}
.pedidos-form-wrap {
  max-width: 720px;
  padding-bottom: 6rem;
}

.pedidos-form {
  background-color: rgba(255, 248, 242, 0.06);
  border: 1px solid rgba(242, 216, 196, 0.15);
  border-radius: 24px;
  padding: 4rem;
  backdrop-filter: blur(8px);
}
.pedidos-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #F2D8C4;
  margin-bottom: 0.5rem;
}
.pedidos-form__input, .pedidos-form__select, .pedidos-form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: rgba(255, 248, 242, 0.08);
  border: 1px solid rgba(242, 216, 196, 0.2);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  appearance: none;
}
.pedidos-form__input::placeholder, .pedidos-form__select::placeholder, .pedidos-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.pedidos-form__input:focus, .pedidos-form__select:focus, .pedidos-form__textarea:focus {
  outline: none;
  border-color: #E8A33D;
  background-color: rgba(255, 248, 242, 0.12);
}
.pedidos-form__input:disabled, .pedidos-form__select:disabled, .pedidos-form__textarea:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.pedidos-form__select option {
  background-color: #2E1A1F;
  color: #FFFFFF;
}
.pedidos-form__textarea {
  resize: vertical;
  min-height: 110px;
}
.pedidos-form__grupo {
  margin-bottom: 2rem;
}
.pedidos-form__fila {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .pedidos-form__fila {
    grid-template-columns: 1fr 1fr;
  }
}
.pedidos-form__sep {
  border: none;
  border-top: 1px solid rgba(242, 216, 196, 0.1);
  margin: 2rem 0;
}
.pedidos-form__hint {
  font-size: 0.875rem;
  color: rgba(242, 216, 196, 0.5);
  margin-top: 0.4rem;
}
.pedidos-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background-color: #E8A33D;
  color: #2E1A1F;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.pedidos-form__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(185, 78, 92, 0.2);
  background-color: #8F3A45;
}
.pedidos-form__btn:active {
  transform: translateY(-1px);
}
.pedidos-form__btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  margin-top: 1rem;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pedidos-form__btn.activo {
  opacity: 1;
  pointer-events: all;
}
.pedidos-form__select-wrap {
  position: relative;
}
.pedidos-form__select-wrap::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #E8A33D;
  pointer-events: none;
  font-size: 1rem;
}

.pedidos-accordion .accordion-item {
  background-color: rgba(255, 248, 242, 0.05);
  border: 1px solid rgba(242, 216, 196, 0.15);
  border-radius: 8px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.pedidos-accordion .accordion-button {
  background-color: transparent;
  color: #F2D8C4;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: none;
}
.pedidos-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(232, 163, 61, 0.12);
  color: #E8A33D;
}
.pedidos-accordion .accordion-button::after {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg);
}
.pedidos-accordion .accordion-body {
  background-color: rgba(255, 248, 242, 0.03);
  padding: 1rem 2rem;
}
.pedidos-accordion .accordion-body label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  padding: 0.4rem 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.pedidos-accordion .accordion-body label:hover {
  color: #E8A33D;
}
.pedidos-accordion .accordion-body label input[type=radio] {
  accent-color: #E8A33D;
  width: 16px;
  height: 16px;
}

.pedidos-ok {
  display: none;
  text-align: center;
  padding: 4rem;
  color: #F2D8C4;
}
.pedidos-ok__icono {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.pedidos-ok__titulo {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  color: #E8A33D;
  margin-bottom: 0.5rem;
}
.pedidos-ok__texto {
  color: rgba(242, 216, 196, 0.7);
}

body.page-quienes-somos {
  background-color: #EDB0B0;
}

.qs-hero {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .qs-hero {
    padding-inline: 2rem;
  }
}
.qs-hero {
  text-align: center;
  padding-top: calc(80px + 4rem);
  padding-bottom: 2rem;
}
.qs-hero__titulo {
  font-family: "Dancing Script", cursive;
  font-size: 3.2rem;
  font-weight: 700;
  color: #B94E5C;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.qs-hero__texto {
  max-width: 680px;
  margin-inline: auto;
  color: #7A6660;
  font-size: 1.05rem;
  line-height: 1.8;
}

.qs-sep {
  width: 80px;
  height: 3px;
  background-color: #8F3A45;
  border-radius: 50px;
  margin: 2rem auto 4rem;
}

.qs-nube {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .qs-nube {
    padding-inline: 2rem;
  }
}
.qs-nube {
  padding-bottom: 6rem;
}
.qs-nube__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 992px) {
  .qs-nube__grid {
    display: block;
    position: relative;
    height: 680px;
    max-width: 900px;
    margin-inline: auto;
  }
}
.qs-nube__item {
  overflow: hidden;
  border-radius: 16px;
  border: 4px solid #8F3A45;
  box-shadow: 0 8px 30px rgba(61, 43, 43, 0.12);
  cursor: pointer;
  background-color: #8F3A45;
}
.qs-nube__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.qs-nube__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(143, 58, 69, 0);
  transition: background-color 0.3s ease;
  border-radius: 16px;
}
.qs-nube__item:hover {
  z-index: 10 !important;
  box-shadow: 0 12px 40px rgba(185, 78, 92, 0.2);
  border-color: #E8A33D;
}
.qs-nube__item:hover img {
  transform: scale(1.08);
}
.qs-nube__item:hover::after {
  background-color: rgba(143, 58, 69, 0.15);
}
.qs-nube__item {
  height: 160px;
}
@media (min-width: 768px) {
  .qs-nube__item {
    height: 200px;
  }
}
@media (min-width: 992px) {
  .qs-nube__item {
    position: absolute;
    transition: transform 0.4s ease, box-shadow 0.3s ease, border-color 0.3s ease, z-index 0s;
  }
  .qs-nube__item:nth-child(1) {
    width: 280px;
    height: 220px;
    top: 20px;
    left: 0px;
    transform: rotate(-4deg);
    z-index: 3;
  }
  .qs-nube__item:nth-child(2) {
    width: 200px;
    height: 180px;
    top: 0px;
    left: 240px;
    transform: rotate(3deg);
    z-index: 2;
  }
  .qs-nube__item:nth-child(3) {
    width: 170px;
    height: 160px;
    top: 30px;
    left: 420px;
    transform: rotate(-2deg);
    z-index: 4;
  }
  .qs-nube__item:nth-child(4) {
    width: 250px;
    height: 210px;
    top: 10px;
    left: 560px;
    transform: rotate(5deg);
    z-index: 2;
  }
  .qs-nube__item:nth-child(5) {
    width: 210px;
    height: 185px;
    top: 200px;
    left: 30px;
    transform: rotate(2deg);
    z-index: 5;
  }
  .qs-nube__item:nth-child(6) {
    width: 180px;
    height: 170px;
    top: 185px;
    left: 260px;
    transform: rotate(-5deg);
    z-index: 6;
  }
  .qs-nube__item:nth-child(7) {
    width: 230px;
    height: 195px;
    top: 195px;
    left: 430px;
    transform: rotate(3deg);
    z-index: 3;
  }
  .qs-nube__item:nth-child(8) {
    width: 260px;
    height: 215px;
    top: 420px;
    left: 10px;
    transform: rotate(-3deg);
    z-index: 4;
  }
  .qs-nube__item:nth-child(9) {
    width: 220px;
    height: 190px;
    top: 410px;
    left: 280px;
    transform: rotate(4deg);
    z-index: 5;
  }
  .qs-nube__item:nth-child(10) {
    width: 200px;
    height: 175px;
    top: 430px;
    left: 520px;
    transform: rotate(-2deg);
    z-index: 3;
  }
  .qs-nube__item:hover {
    transform: scale(1.1) rotate(0deg) !important;
  }
}

body.page-kids {
  background-color: #FFD166;
  overflow-x: hidden;
}

@keyframes flotar {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes flotar-inv {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes girar-lento {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes latir {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.kids-deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.kids-deco__item {
  position: absolute;
  opacity: 0.55;
  font-size: 2.2rem;
  user-select: none;
}
.kids-deco__item:nth-child(1) {
  top: 8%;
  left: 3%;
  font-size: 2.8rem;
  animation: flotar 3.2s ease-in-out infinite;
}
.kids-deco__item:nth-child(2) {
  top: 15%;
  right: 4%;
  font-size: 2.2rem;
  animation: flotar-inv 2.8s ease-in-out infinite;
}
.kids-deco__item:nth-child(3) {
  top: 25%;
  left: 7%;
  font-size: 1.8rem;
  animation: latir 2s ease-in-out infinite;
}
.kids-deco__item:nth-child(4) {
  top: 40%;
  right: 2%;
  font-size: 2.4rem;
  animation: flotar 4s ease-in-out infinite;
}
.kids-deco__item:nth-child(5) {
  top: 55%;
  left: 1%;
  font-size: 2rem;
  animation: flotar-inv 3.5s ease-in-out infinite;
}
.kids-deco__item:nth-child(6) {
  top: 65%;
  right: 5%;
  font-size: 1.6rem;
  animation: latir 1.8s ease-in-out infinite 0.4s;
}
.kids-deco__item:nth-child(7) {
  top: 75%;
  left: 4%;
  font-size: 2.5rem;
  animation: flotar 3.8s ease-in-out infinite 0.5s;
}
.kids-deco__item:nth-child(8) {
  top: 82%;
  right: 3%;
  font-size: 2.2rem;
  animation: flotar-inv 2.6s ease-in-out infinite 0.2s;
}
.kids-deco__item:nth-child(9) {
  top: 90%;
  left: 8%;
  font-size: 2rem;
  animation: flotar 3s ease-in-out infinite 0.7s;
}
.kids-deco__item:nth-child(10) {
  top: 35%;
  left: 92%;
  font-size: 2.6rem;
  animation: girar-lento 8s linear infinite;
}

.kids-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .kids-hero {
    padding-inline: 2rem;
  }
}
.kids-hero {
  text-align: center;
  padding-top: calc(80px + 4rem);
  padding-bottom: 2rem;
}
.kids-hero__titulo {
  font-family: "Dancing Script", cursive;
  font-size: 3.8rem;
  font-weight: 700;
  color: #FF6B9D;
  text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .kids-hero__titulo {
    font-size: 5rem;
  }
}
.kids-hero__subtitulo {
  font-size: 1.1rem;
  color: #8B4513;
  font-weight: 600;
  max-width: 560px;
  margin-inline: auto;
}

.kids-sep {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B9D, #4ECDC4, #FFD166);
  border-radius: 50px;
  margin: 2rem auto 4rem;
}

.page-kids .producto-detalle {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  margin-bottom: 2rem;
}
.page-kids .producto-detalle:not(:last-child) {
  border-bottom: none !important;
}
.page-kids .producto-detalle__nombre {
  color: #FF6B9D;
  font-size: 2rem;
}
.page-kids .producto-detalle__precio {
  color: #4ECDC4;
  font-weight: 800;
}
.page-kids .producto-detalle__btn {
  background-color: #FF6B9D;
}
.page-kids .producto-detalle__btn:hover {
  background-color: #e0527f;
}
.page-kids .producto-detalle--destacado-princesas {
  background-color: #E8D5F5 !important;
}

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