/* =========================================================
   HERO PASTELERÍA (reutiliza .hero / .hero-content / .hero-title / .btn-hero / .hero-image)
   ========================================================= */
.pastel-hero {
  min-height: 60vh;
  height: 60vh;
  background: linear-gradient(135deg, #E9B6ED 0%, #C54ACF 45%, #841F8C 100%);
}

.pastel-hero .btn-hero {
  color: #841F8C;
}

.pastel-hero .btn-hero:hover {
  background: #F3E6F4;
}

.pastel-hero .hero-image img {
  filter: drop-shadow(0 16px 48px rgba(132, 31, 140, 0.35));
}

/* Menú móvil morado (acorde al hero de esta sección) */
.mobile-menu {
  background: linear-gradient(160deg, #E9B6ED 0%, #C54ACF 55%, #841F8C 100%);
}

.pastel-hero .hero-content {
  height: 100%;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
}

.pastel-hero .hero-text {
  flex: none;
  max-width: 540px;
  padding: 90px 0 2.5rem;
}

.pastel-hero .hero-title {
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  white-space: nowrap;
  margin-bottom: 1rem;
}

.pastel-hero .hero-image {
  flex: none;
}

.pastel-hero .hero-image img {
  max-height: 54vh;
}

@media (max-width: 1100px) {
  .pastel-hero .hero-content {
    gap: 1.5rem;
  }

  .pastel-hero .hero-title {
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  }
}

@media (max-width: 900px) {
  .pastel-hero {
    height: auto;
    min-height: 100vh;
  }

  .pastel-hero .hero-content {
    gap: 2rem;
    justify-content: space-between;
    min-height: 100vh;
  }

  .pastel-hero .hero-text {
    max-width: 100%;
  }

  .pastel-hero .hero-title {
    white-space: normal;
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .pastel-hero .hero-image {
    justify-content: center;
  }

  .pastel-hero .hero-image img {
    max-height: 40vh;
  }
}

.pastel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.pastel-hero-lead {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 1.25rem;
}

/* =========================================================
   INGREDIENTES: animación de atención en hover
   ========================================================= */
.highlights-image img {
  transition: transform 0.2s ease;
}

.highlights-image:hover img {
  animation: pastel-img-wiggle 0.6s ease;
}

@keyframes pastel-img-wiggle {
  0%   { transform: scale(1) rotate(0deg); }
  20%  { transform: scale(1.06) rotate(-4deg); }
  40%  { transform: scale(1.06) rotate(4deg); }
  60%  { transform: scale(1.06) rotate(-3deg); }
  80%  { transform: scale(1.06) rotate(3deg); }
  100% { transform: scale(1.03) rotate(0deg); }
}

/* =========================================================
   MINI BANNER
   ========================================================= */
.pastel-banner {
  background: linear-gradient(90deg, #1477AE 0%, #3AA5DE 100%);
  padding: 1.75rem 2rem;
}

.pastel-banner-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.pastel-banner-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #ffffff;
  white-space: nowrap;
}

.pastel-banner-item i {
  font-size: 1.05rem;
  color: #ffffff;
}

/* ---- Versión móvil: carrusel infinito ---- */
.pastel-banner-track-wrapper {
  display: none;
}

@media (max-width: 900px) {
  .pastel-banner-container {
    display: none;
  }

  .pastel-banner-track-wrapper {
    display: block;
    overflow: hidden;
  }

  .pastel-banner-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 2.5rem;
    animation: pastel-banner-scroll 16s linear infinite;
  }

  .pastel-banner-item {
    font-size: 0.88rem;
  }
}

@keyframes pastel-banner-scroll {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   CÓMO PEDIR + PREGUNTAS FRECUENTES (dos columnas)
   ========================================================= */
.pastel-order-faq {
  background: #ffffff;
  padding: 70px 2rem;
}

.pastel-order-faq-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pastel-col-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.pastel-col-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* ---- Cómo pedir: lista vertical ---- */
.pastel-steps-list {
  display: flex;
  flex-direction: column;
}

.pastel-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8ee;
}

.pastel-step:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.pastel-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #841F8C;
  color: #ffffff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}

.pastel-step:hover .pastel-step-number {
  transform: scale(1.12);
}

.pastel-step-text h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.2rem;
}

.pastel-step-text p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.55;
}

/* ---- FAQ ---- */
.pastel-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pastel-faq-item {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.7s ease, transform 0.7s ease;
}

.pastel-faq-item:hover {
  border-color: rgba(113, 195, 240, 0.45);
  box-shadow: 0 8px 20px rgba(20, 119, 174, 0.08);
}

.pastel-faq-item.open {
  border-color: rgba(113, 195, 240, 0.6);
}

.pastel-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #1a1a2e;
  text-align: left;
}

.pastel-faq-question i {
  flex-shrink: 0;
  color: #1477AE;
  transition: transform 0.25s ease;
}

.pastel-faq-item.open .pastel-faq-question i {
  transform: rotate(180deg);
}

.pastel-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pastel-faq-item.open .pastel-faq-answer {
  max-height: 220px;
}

.pastel-faq-answer p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  padding: 0 1.25rem 1.1rem;
}

@media (max-width: 900px) {
  .pastel-order-faq-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.pastel-cta {
  background: #ffffff;
  padding: 70px 2rem 90px;
}

.pastel-cta-card {
  position: relative;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
  background: linear-gradient(120deg, #1477AE 0%, #3AA5DE 55%, #71C3F0 100%);
  border-radius: 28px;
  padding: 3.25rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 20px 50px rgba(20, 119, 174, 0.25);
}

.pastel-cta-bg-icon {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  font-size: 11rem;
  color: rgba(255, 255, 255, 0.14);
  transform: rotate(-14deg);
  z-index: 0;
  pointer-events: none;
}

.pastel-cta-title,
.pastel-cta-text,
.pastel-cta-actions {
  position: relative;
  z-index: 1;
}

.pastel-cta-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
}

.pastel-cta-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  white-space: nowrap;
}

.pastel-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.pastel-cta-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.pastel-cta-link i {
  font-size: 0.78rem;
  transition: transform 0.25s ease;
}

.pastel-cta-link:hover {
  opacity: 1;
}

.pastel-cta-link:hover i {
  transform: translateX(4px);
}

.pastel-cta-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pastel-cta-icon-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pastel-cta-icon-btn:hover {
  background: #ffffff;
  color: #1477AE;
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .pastel-cta-card {
    padding: 2.5rem 1.75rem;
  }

  .pastel-cta-title,
  .pastel-cta-text {
    white-space: normal;
  }

  .pastel-cta-bg-icon {
    font-size: 7rem;
  }
}
