.elementor-10 .elementor-element.elementor-element-3aca167{--display:flex;}/* Start custom CSS for html, class: .elementor-element-eb08813 *//* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevenir scroll horizontal */
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden; /* Prevenir scroll horizontal */
  background: #fafafa;
  width: 100%;
  max-width: 100vw; /* Limitar ancho máximo */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%; /* Asegurar que ocupe el ancho completo */
}

/* Typography */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #8d3b9d;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8d3b9d, #73e4dd);
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(141, 59, 157, 0.3);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(141, 59, 157, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
}

.logo-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #73e4dd 0%, rgba(115, 228, 221, 0.1) 100%);
  border-radius: 50px;
  border: 2px solid #73e4dd;
}

.cupcake-icon {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: "Playfair Display", serif;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  color: #8d3b9d;
}

.logo-sub {
  font-size: clamp(10px, 2vw, 12px);
  color: #8d3b9d;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(141, 59, 157, 0.1), rgba(115, 228, 221, 0.1));
  border-radius: 25px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link:hover,
.nav-link.active {
  color: #8d3b9d;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #8d3b9d;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8e8ff 0%, #e8f8ff 30%, #fff0f8 60%, #f0fff8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 40px;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatComplex 15s ease-in-out infinite;
  filter: blur(2px);
}

.hero-decoration-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #8d3b9d, #73e4dd);
  top: 10%;
  right: -150px;
  animation-delay: 0s;
}

.hero-decoration-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #73e4dd, #ffb6c1);
  bottom: 20%;
  left: -100px;
  animation-delay: -5s;
}

.hero-decoration-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ffb6c1, #8d3b9d);
  top: 60%;
  right: 20%;
  animation-delay: -10s;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  opacity: 0;
  transform: translateY(50px);
  animation: heroContentSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
  position: relative;
  z-index: 5;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 600;
  color: #8d3b9d;
  margin-bottom: 2rem;
  border: 2px solid #73e4dd;
  box-shadow: 0 8px 32px rgba(141, 59, 157, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(115, 228, 221, 0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  position: relative;
}

.hero-title-line {
  display: block;
  font-size: clamp(40px, 8vw, 80px);
  background: linear-gradient(135deg, #8d3b9d 0%, #73e4dd 50%, #ffb6c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite alternate;
  letter-spacing: -2px;
}

.hero-title-sub {
  display: block;
  font-size: clamp(16px, 3vw, 24px);
  color: #8d3b9d;
  font-weight: 400;
  letter-spacing: 3px;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: clamp(16px, 3vw, 20px);
  color: #666;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards;
  position: relative;
  z-index: 10;
  justify-content: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: clamp(1rem, 2vw, 1.2rem) clamp(2rem, 4vw, 2.5rem);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  cursor: pointer;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #8d3b9d 0%, #73e4dd 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(141, 59, 157, 0.4);
  border: 2px solid transparent;
}

.hero-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(141, 59, 157, 0.5);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #8d3b9d;
  border: 2px solid #73e4dd;
  backdrop-filter: blur(20px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #8d3b9d;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(115, 228, 221, 0.3);
}

.hero-visual {
  opacity: 0;
  transform: translateY(30px);
  animation: heroImageSlide 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
  position: relative;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero-image-decoration {
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(45deg, rgba(141, 59, 157, 0.1), rgba(115, 228, 221, 0.1), rgba(255, 182, 193, 0.1));
  border-radius: 50%;
  z-index: -1;
  animation: rotateGlow 20s linear infinite;
  filter: blur(3px);
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(141, 59, 157, 0.2);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
  transform: rotate(-2deg);
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 15px 35px rgba(141, 59, 157, 0.3);
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  animation: floatMagic 8s ease-in-out infinite;
  opacity: 0.8;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.floating-element-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element-2 {
  top: 25%;
  right: 10%;
  animation-delay: -2s;
}

.floating-element-3 {
  bottom: 35%;
  left: 0%;
  animation-delay: -4s;
}

.floating-element-4 {
  bottom: 15%;
  right: 5%;
  animation-delay: -6s;
}

/* Productos Section */
.productos {
  padding: clamp(80px, 12vw, 120px) 0;
  background: linear-gradient(135deg, #fff0f8 0%, #f0fff8 50%, #f8e8ff 100%);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.productos.animate {
  opacity: 1;
  transform: translateY(0);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.producto-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(141, 59, 157, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(115, 228, 221, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  position: relative;
  width: 100%;
}

.producto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(115, 228, 221, 0.1), transparent);
  transition: left 0.6s;
}

.producto-card:hover::before {
  left: 100%;
}

.producto-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(141, 59, 157, 0.2);
  border-color: #73e4dd;
}

.producto-image {
  height: clamp(320px, 40vw, 400px);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8e8ff 0%, #e8f8ff 50%, #fff0f8 100%);
  width: 100%;
}

.producto-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(141, 59, 157, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(115, 228, 221, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(255, 182, 193, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.producto-image::after {
  content: "🧁 ✨ 💖 🎂 ⭐ 🌟";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  font-size: 1.5rem;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  animation: floatIcons 8s ease-in-out infinite;
}

.producto-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.producto-card:hover .producto-image img {
  transform: scale(1.05);
}

.producto-card:hover .producto-image::after {
  animation-play-state: paused;
  opacity: 0.25;
}

.producto-info {
  padding: 2rem;
  text-align: center;
}

.producto-info h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(16px, 3vw, 18px);
  color: #8d3b9d;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.producto-description {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.precio {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
  color: #73e4dd;
  background: linear-gradient(135deg, #73e4dd, #8d3b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.precio-referencial {
  font-size: clamp(11px, 2vw, 12px);
  color: #999;
  font-style: italic;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* Nueva Sección: Dulces Temáticos */
.dulces-tematicos {
  padding: clamp(80px, 12vw, 120px) 0;
  background: linear-gradient(135deg, #e8f8ff 0%, #f8e8ff 30%, #fff0f8 60%, #f0fff8 100%);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.dulces-tematicos.animate {
  opacity: 1;
  transform: translateY(0);
}

.dulces-tematicos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(141, 59, 157, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(115, 228, 221, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 182, 193, 0.03) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.dulces-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.dulces-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 600;
  color: #8d3b9d;
  margin-bottom: 2rem;
  border: 2px solid #73e4dd;
  box-shadow: 0 8px 32px rgba(141, 59, 157, 0.15);
  position: relative;
  overflow: hidden;
  animation: pulseGlow 3s ease-in-out infinite;
}

.dulces-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(115, 228, 221, 0.3), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

.badge-icon {
  font-size: 1.5rem;
  animation: rotate360 4s linear infinite;
}

.badge-text {
  font-weight: 700;
  letter-spacing: 1px;
}

.dulces-title {
  font-size: clamp(32px, 6vw, 56px);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #8d3b9d 0%, #73e4dd 50%, #ffb6c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.dulces-subtitle {
  font-size: clamp(16px, 3vw, 20px);
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

/* Categorías de dulces */
.dulces-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1rem; /* Añadir padding para móviles */
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(115, 228, 221, 0.3);
  border-radius: 50px;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap; /* Prevenir salto de línea */
}

.category-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #8d3b9d, #73e4dd);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
  opacity: 1;
}

.category-btn:hover,
.category-btn.active {
  color: white;
  border-color: #8d3b9d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(141, 59, 157, 0.3);
}

.category-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.category-btn:hover .category-icon,
.category-btn.active .category-icon {
  transform: scale(1.2) rotate(10deg);
}

/* Grid de dulces temáticos */
.dulces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.dulce-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(141, 59, 157, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(115, 228, 221, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 100%; /* Limitar ancho máximo */
}

.dulce-card.show {
  opacity: 1;
  transform: translateY(0);
}

.dulce-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(115, 228, 221, 0.15), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.dulce-card:hover::before {
  left: 100%;
}

.dulce-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 35px 70px rgba(141, 59, 157, 0.2);
  border-color: #73e4dd;
}

.dulce-image-container {
  position: relative;
  height: clamp(280px, 35vw, 350px);
  overflow: hidden;
  background: linear-gradient(135deg, #f8e8ff 0%, #e8f8ff 50%, #fff0f8 100%);
  width: 100%;
}

.dulce-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(141, 59, 157, 0.05) 0%, 
    rgba(115, 228, 221, 0.05) 50%, 
    rgba(255, 182, 193, 0.05) 100%);
  z-index: 1;
}

/* ARREGLADO: Imagen que llena completamente el contenedor y se centra */
.dulce-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cambiar a cover para llenar completamente */
  object-position: center; /* Centrar la imagen */
  transition: transform 0.6s ease;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.dulce-card:hover .dulce-image {
  transform: scale(1.1);
}

.dulce-theme-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(141, 59, 157, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 600;
  z-index: 3;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.dulce-card:hover .dulce-theme-badge {
  transform: translateY(0);
  opacity: 1;
}

.dulce-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  z-index: 2;
  pointer-events: none;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.dulce-card:hover .dulce-floating-icons {
  opacity: 0.6;
}

.floating-icon {
  font-size: clamp(1.5rem, 3vw, 2rem);
  animation: floatMagic 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: -2s; }
.floating-icon:nth-child(3) { animation-delay: -4s; }

.dulce-info {
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.dulce-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 3vw, 22px);
  color: #8d3b9d;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.dulce-card:hover .dulce-title {
  color: #73e4dd;
}

.dulce-description {
  font-size: clamp(14px, 2.5vw, 16px);
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dulce-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dulce-tag {
  background: linear-gradient(135deg, rgba(115, 228, 221, 0.2), rgba(141, 59, 157, 0.2));
  color: #8d3b9d;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: clamp(11px, 2vw, 12px);
  font-weight: 600;
  border: 1px solid rgba(115, 228, 221, 0.3);
  transition: all 0.3s ease;
}

.dulce-card:hover .dulce-tag {
  background: linear-gradient(135deg, #73e4dd, #8d3b9d);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Call to Action */
.dulces-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 2px solid rgba(115, 228, 221, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
}

.dulces-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(141, 59, 157, 0.03) 0%, 
    rgba(115, 228, 221, 0.03) 50%, 
    rgba(255, 182, 193, 0.03) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 4vw, 32px);
  color: #8d3b9d;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-description {
  font-size: clamp(16px, 3vw, 18px);
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, #8d3b9d 0%, #73e4dd 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 16px);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(141, 59, 157, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(141, 59, 157, 0.5);
}

/* Nosotros Section */
.nosotros {
  padding: clamp(80px, 12vw, 120px) 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.nosotros.animate {
  opacity: 1;
  transform: translateY(0);
}

.nosotros-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  text-align: center;
  width: 100%;
}

.nosotros-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  color: #8d3b9d;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.nosotros-description {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.8;
  color: #666;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.nosotros-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  width: 100%;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(115, 228, 221, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(115, 228, 221, 0.2);
}

.feature-icon {
  font-size: 2rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #73e4dd, #8d3b9d);
  border-radius: 50%;
  color: white;
}

.feature-text h4 {
  color: #8d3b9d;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #666;
  font-size: 14px;
}

.nosotros-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Entrega Section */
.entrega {
  padding: clamp(80px, 12vw, 120px) 0;
  background: linear-gradient(135deg, #f8e8ff 0%, #e8f8ff 100%);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.entrega.animate {
  opacity: 1;
  transform: translateY(0);
}

.entrega-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.entrega-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  color: #8d3b9d;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
}

.entrega-description {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.entrega-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.entrega-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(14px, 2.5vw, 16px);
  color: #666;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #73e4dd, #8d3b9d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.entrega-btn {
  display: inline-block;
  background: linear-gradient(135deg, #8d3b9d, #73e4dd);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 16px);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
  max-width: 400px;
  margin: 0 auto;
}

.entrega-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(141, 59, 157, 0.3);
}

.entrega-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
}

/* Contacto Section */
.contacto {
  padding: clamp(80px, 12vw, 120px) 0;
  background: linear-gradient(135deg, #fff0f8 0%, #f0fff8 100%);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.contacto.animate {
  opacity: 1;
  transform: translateY(0);
}

.contacto-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  text-align: center;
  width: 100%;
}

.contacto-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  color: #8d3b9d;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.contacto-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.contacto-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(141, 59, 157, 0.1);
  transition: all 0.3s ease;
}

.contacto-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(141, 59, 157, 0.2);
}

.contacto-item h3 {
  font-family: "Playfair Display", serif;
  color: #8d3b9d;
  font-size: clamp(18px, 3vw, 22px);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contacto-item p {
  font-size: clamp(16px, 3vw, 18px);
  color: #666;
  font-weight: 500;
}

.contacto-logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #8d3b9d 0%, #73e4dd 100%);
  color: white;
  padding: clamp(60px, 10vw, 80px) 0 clamp(30px, 5vw, 40px);
  position: relative;
  width: 100%;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}

.footer-logo .logo-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
  justify-content: center;
}

.footer-logo .logo-main,
.footer-logo .logo-sub {
  color: white;
}

.footer-logo p {
  opacity: 0.9;
  color: white;
  font-size: clamp(14px, 2.5vw, 16px);
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(14px, 2.5vw, 16px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-links a:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
  color: white;
  font-size: clamp(12px, 2vw, 14px);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroContentSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(141, 59, 157, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(115, 228, 221, 0.5));
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes floatComplex {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(15px) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) translateX(-20px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) translateX(8px) rotate(270deg);
  }
}

@keyframes floatMagic {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  25% {
    transform: translateY(-15px) translateX(10px) scale(1.1);
  }
  50% {
    transform: translateY(-5px) translateX(-15px) scale(0.9);
  }
  75% {
    transform: translateY(-20px) translateX(5px) scale(1.05);
  }
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
    filter: blur(3px) hue-rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    filter: blur(3px) hue-rotate(360deg);
  }
}

@keyframes floatIcons {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
  }
  50% {
    transform: translateY(-5px) rotate(-3deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(141, 59, 157, 0.15);
  }
  50% {
    box-shadow: 0 12px 40px rgba(115, 228, 221, 0.25);
  }
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile Responsive - MEJORADO */
@media (max-width: 768px) {
  /* Prevenir overflow horizontal */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .productos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }

  .producto-image {
    height: clamp(280px, 35vw, 350px);
  }

  /* ARREGLADO: Grid de dulces en móviles */
  .dulces-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    padding: 0; /* Remover padding extra */
  }

  .dulce-image-container {
    height: clamp(250px, 30vw, 300px);
  }

  /* ARREGLADO: Categorías en móviles */
  .dulces-categories {
    gap: 0.5rem;
    padding: 0 10px; /* Reducir padding */
    width: 100%;
    max-width: 100%;
  }

  .category-btn {
    padding: 0.8rem 1.5rem;
    font-size: 14px;
    flex: 1;
    min-width: 0; /* Permitir que se reduzcan */
    max-width: 150px; /* Limitar ancho máximo */
  }

  .nosotros-content {
    gap: 3rem;
    width: 100%;
  }

  .nosotros-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }

  .entrega-content {
    gap: 3rem;
    width: 100%;
  }

  .entrega-features {
    align-items: flex-start;
  }

  .contacto-content {
    gap: 3rem;
    width: 100%;
  }

  .contacto-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }

  .footer-content {
    gap: 2rem;
    width: 100%;
  }

  .footer-links {
    gap: 1rem;
  }

  .container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
    height: 70px;
    width: 100%;
  }

  .hero {
    padding: 80px 0 30px;
    width: 100%;
  }

  .hero-decoration-1,
  .hero-decoration-2,
  .hero-decoration-3 {
    display: none;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .section-title::after {
    width: 60px;
    height: 3px;
    bottom: -10px;
  }

  .producto-image {
    height: clamp(250px, 30vw, 300px);
  }

  .dulce-image-container {
    height: clamp(220px, 28vw, 280px);
  }

  /* ARREGLADO: Categorías en móviles pequeños */
  .dulces-categories {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 10px;
    width: 100%;
  }

  .category-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
    padding: 0.8rem 1rem;
  }

  .productos,
  .dulces-tematicos,
  .nosotros,
  .entrega,
  .contacto {
    padding: 60px 0;
    width: 100%;
  }

  .footer {
    padding: 40px 0 20px;
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* ARREGLADO: Asegurar que todos los contenedores respeten el ancho */
  .dulces-header,
  .dulces-cta,
  .cta-content {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .nosotros-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
  }

  .entrega-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .entrega-title,
  .entrega-description {
    text-align: left;
  }

  .entrega-features {
    margin-left: 0;
    margin-right: 0;
  }

  .entrega-btn {
    max-width: none;
    display: inline-block;
  }

  .contacto-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
  }

  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dulces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* Large Desktop */
@media (min-width: 1025px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .nosotros-content {
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    text-align: left;
  }

  .entrega-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .entrega-title,
  .entrega-description {
    text-align: left;
  }

  .entrega-features {
    margin-left: 0;
    margin-right: 0;
  }

  .entrega-btn {
    max-width: none;
    display: inline-block;
  }

  .contacto-content {
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    text-align: left;
  }

  .productos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dulces-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}/* End custom CSS */