:root {
  --rosa: #ff4fa3;
  --rosa-dark: #e03d8c;
  --morado: #7a2cff;
  --morado-dark: #5d1ae0;
  --azul: #00c2ff;
  --amarillo: #ffc400;
  --gris: #f5f5f5;
  --oscuro: #1c1c1c;
  --light: #f8fafc;
  --gradient: linear-gradient(135deg, var(--rosa), var(--morado));
  --gradient-dark: linear-gradient(
    135deg,
    var(--rosa-dark),
    var(--morado-dark)
  );
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
  --shadow-large: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  background: #ffffff;
  color: var(--oscuro);
  overflow-x: hidden;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* MENÚ */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 2000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid transparent;
  border-image: var(--gradient);
  border-image-slice: 1;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--rosa);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 79, 163, 0.1);
}

.nav-menu {
  display: flex;
  gap: 5px;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: var(--oscuro);
  padding: 10px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-menu a i {
  font-size: 0.5rem;
  color: var(--rosa);
}

.nav-menu a:hover {
  background: rgba(255, 79, 163, 0.1);
  color: var(--rosa);
  transform: translateY(-2px);
}

.nav-menu a.active {
  background: var(--gradient);
  color: white;
}

.nav-menu a.active i {
  color: white;
}

/* HERO SECTION */
header {
  background: linear-gradient(135deg, var(--rosa), var(--morado));
  color: white;
  padding: 120px 20px 80px;
  text-align: center;
  animation: fadeIn 1.2s ease;
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 79, 163, 0.1),
    rgba(122, 44, 255, 0.05)
  );
  z-index: 0;
}

/* Canvas partículas */
#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Contenedor de íconos */
.floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 55px;
  opacity: 0.7;
  animation: float 20s infinite linear;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.floating-icon:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  color: #ffffff;
}
.floating-icon:nth-child(2) {
  top: 40%;
  right: 90%;
  animation-delay: 0s;
  color: #173aff;
}
.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 0s;
  color: #ffc400;
}
.floating-icon:nth-child(4) {
  top: 40%;
  right: 20%;
  animation-delay: 0s;
  color: #ffffff;
}
.floating-icon:nth-child(5) {
  bottom: 20%;
  right: 5%;
  animation-delay: 0s;
  color: #ffffff;
}
.floating-icon:nth-child(6) {
  top: 15%;
  left: 25%;
  animation-delay: 0s;
  color: #00c2ff;
}
.floating-icon:nth-child(7) {
  bottom: 80%;
  right: 25%;
  animation-delay: 0s;
  color: #ffc400;
}
.floating-icon:nth-child(8) {
  top: 80%;
  left: 5%;
  animation-delay: 0s;
  color: #7a2cff;
}
.floating-icon:nth-child(9) {
  top: 70%;
  left: 70%;
  animation-delay: 0s;
  color: #00c2ff;
}
.floating-icon:nth-child(10) {
  top: 20%;
  left: 90%;
  animation-delay: 0s;
  color: #45ff2c;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  75% {
    transform: translateY(20px) rotate(270deg);
  }
}

/* Asegura contenido arriba del canvas */
header > *:not(canvas) {
  position: relative;
  z-index: 2;
}

.bounce-gum {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  cursor: pointer;
  animation: bounceGum 2s infinite;
}

header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

header p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.streaming {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  font-weight: 800;
}

/* BOTONES GENERALES */
.btn {
  display: inline-block;
  margin-top: 10px;
  background: var(--amarillo);
  color: #000;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.25);
  position: relative;
  z-index: 1;
}

.btn:hover, .btn-planes_inicio:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 196, 0, 0.35);
  background: #ffd000;
}

.btn-planes_inicio{
  border: solid #fff 5px;
}
/* SECCIONES GENERALES */
section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  animation: fadeUp 1s ease;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--oscuro);
  position: relative;
  display: inline-block;
  font-weight: 800;
}

h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 6px;
  background: var(--gradient);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.7;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--oscuro);
  max-width: 900px;
}

/* CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin-top: 50px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
}

.card.animated {
  transform: translateY(0);
  opacity: 1;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.card h3 {
  font-size: 1.5rem;
  color: var(--oscuro);
  margin-bottom: 15px;
}

/* BENEFICIOS ESPECÍFICOS */
#beneficios .grid {
  grid-template-columns: repeat(4, 1fr);
}

#beneficios .card {
  padding: 16px 12px;
}

#beneficios .card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

#beneficios .card p {
  font-size: 0.88rem;
  line-height: 1.4;
}

#beneficios .card i {
  font-size: 32px !important;
}

/* CARRUSEL */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 50px auto 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
}

.carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Transición más suave */
  border-radius: 45px 45px 25px 25px;
  overflow: visible;
  width: 100%;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.8);
}

.carousel-slide {
  min-width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 28, 28, 0.85);
  color: white;
  padding: 25px;
  text-align: center;
}

.carousel-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--rosa);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: white;
  transform: scale(1.2);
}

/* DISPOSITIVOS */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.device-item {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
}

.device-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.device-icon {
  font-size: 48px;
  color: var(--rosa);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.device-item:hover .device-icon {
  transform: scale(1.2);
}

.device-item .btn {
  padding: 10px 16px;
  font-size: 0.85rem;
  margin: 5px 0;
  width: 100%;
  max-width: 180px;
}

/* Asegurar que los botones se mantengan en una línea */
.device-item .btn i {
  margin-right: 5px;
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.faq-question {
  padding: 25px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--oscuro);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(255, 79, 163, 0.05);
}

.faq-question i {
  transition: transform 0.3s;
  color: var(--rosa);
}

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

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

/* PLANES HORIZONTALES */
.plans-horizontal-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.plan-horizontal {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.1fr 1.8fr;
  gap: 25px;
  padding: 30px;
  background: white;
  border-radius: 24px;
  border: 2px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow);
  margin: 0 auto 50px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.plan-horizontal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 79, 163, 0.03),
    rgba(122, 44, 255, 0.03)
  );
  z-index: 0;
}

.plan-horizontal.featured {
  border-color: var(--rosa);
  box-shadow: 0 20px 50px rgba(255, 79, 163, 0.15);
  transform: scale(1.02);
  animation: featuredGlow 3s infinite alternate;
}

.plan-horizontal:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 79, 163, 0.3);
}

.plan-horizontal.featured:hover {
  transform: translateY(-12px) scale(1.02);
}

.plan-popular-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background: linear-gradient(135deg, var(--amarillo), #ffd700);
  color: #000;
  padding: 10px 50px;
  font-weight: 900;
  font-size: 12px;
  transform: rotate(45deg);
  box-shadow: 0 5px 20px rgba(255, 196, 0, 0.3);
  z-index: 2;
  letter-spacing: 1px;
}

/* PLAN LEFT */
.plan-left {
  position: relative;
  z-index: 1;
  text-align: center;
}

.check-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.plan-horizontal:hover .check-circle {
  transform: scale(1.1) rotate(10deg);
}

.plan-ribbon {
  display: inline-block;
  background: var(--morado);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(122, 44, 255, 0.2);
}

.plan-left h3 {
  margin: 10px 0;
  font-size: 24px;
  font-weight: 800;
  color: var(--oscuro);
  position: relative;
  display: inline-block;
}

.plan-left h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 30%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--rosa);
  border-radius: 2px;
}

.price-wrapper {
  margin: 25px 0;
}

.price {
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 48px;
  font-weight: 900;
  color: var(--rosa);
  line-height: 1;
}

.currency-symbol {
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
  color: var(--rosa);
}

.currency-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.currency-btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid var(--rosa);
  background: white;
  color: var(--rosa);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.currency-btn.active {
  background: var(--gradient);
  color: white;
  border-color: var(--rosa);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 79, 163, 0.25);
}

.currency-btn:hover:not(.active) {
  background: rgba(255, 79, 163, 0.1);
  transform: translateY(-2px);
}

.currency-btn i {
  font-size: 1.1rem;
}

.period {
  font-size: 18px;
  color: #777;
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

.price-breakdown {
  margin: 15px 0;
}

.effective-price {
  display: inline-block;
  background: rgba(255, 79, 163, 0.1);
  color: var(--rosa);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.plan-badge {
  display: inline-block;
  background: var(--morado);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin: 15px 0;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(122, 44, 255, 0.2);
}

.plan-desc {
  margin: 15px 0;
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.plan-features-mini {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px dashed #e2e8f0;
}

.mini-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mini-feature i {
  font-size: 20px;
  color: var(--rosa);
  background: rgba(255, 79, 163, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-feature span {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}

/* PLAN DIVIDER */
.plan-divider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-divider {
  width: 2px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, var(--rosa), transparent);
  position: relative;
}

.plan-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  background: var(--rosa);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

.plan-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  background: var(--morado);
  border-radius: 50%;
  animation: dotPulse 2s infinite reverse;
}

.divider-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa);
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(255, 79, 163, 0.2);
  border: 2px solid var(--rosa);
}

/* PLAN RIGHT */
.plan-right {
  position: relative;
  z-index: 1;
}

.plan-features-header {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(255, 79, 163, 0.2);
}

.plan-features-header h4 {
  font-size: 20px;
  color: var(--oscuro);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features-header i {
  color: var(--rosa);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.feature-list li {
  padding: 8px 0;
  color: #444;
  font-weight: 500;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  transform: translateX(10px);
  color: var(--rosa);
}

.feature-icon {
  color: var(--morado);
  font-size: 16px;
  min-width: 25px;
}

.feature-icon.start {
  color: #2e7d32;
}

.feature-icon.premium {
  color: var(--rosa);
}

.feature-highlight {
  background: rgba(255, 79, 163, 0.05);
  padding: 15px;
  border-radius: 12px;
  margin: 10px 0;
  border-left: 4px solid var(--rosa);
}

.feature-highlight strong {
  color: var(--oscuro);
}

.plan-savings-card {
  background: linear-gradient(
    135deg,
    rgba(255, 196, 0, 0.1),
    rgba(255, 196, 0, 0.2)
  );
  border-radius: 16px;
  padding: 20px;
  margin: 25px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 196, 0, 0.3);
}

.savings-icon {
  width: 50px;
  height: 50px;
  background: var(--amarillo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
}

.savings-content h5 {
  color: #000;
  margin-bottom: 5px;
  font-size: 18px;
}

.savings-content p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.plan-action {
  margin-top: 30px;
  text-align: center;
}

.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 300px;
  color: white;
}

.plan-btn::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.7s ease;
}

.plan-btn:hover::before {
  left: 100%;
}

.plan-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.plan-note {
  font-size: 13px;
  color: #777;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.plan-note i {
  color: var(--rosa);
}

.recommended-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--amarillo);
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 5px 20px rgba(255, 196, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  letter-spacing: 1px;
}

/* COMPARATIVA DE PLANES */
.plans-comparison {
  max-width: 1100px;
  margin: 60px auto 0;
  gap: 10px;
}

.comparison-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 79, 163, 0.1);
}

.comparison-card h4 {
  color: var(--oscuro);
  margin-bottom: 25px;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.comparison-item {
  text-align: center;
  padding: 25px;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.8);
  transition: all 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.comparison-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--oscuro);
}

.comparison-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* CONTACTO */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

/* RESEÑAS */
#Valoraciones {
  background: #f8fafc;
  border-radius: 30px;
  margin: 80px auto;
}

.reviews-container {
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
}

.reviews-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 10px 40px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(33.333% - 20px);
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: all 0.3s ease;
  position: relative;
  min-width: 300px;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.review-info h4 {
  color: var(--oscuro);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.review-date {
  color: #666;
  font-size: 0.9rem;
}

.review-rating {
  color: #ffc400;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-content {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.review-plan {
  display: inline-block;
  background: rgba(255, 79, 163, 0.1);
  color: var(--rosa);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--rosa);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 5;
}

.reviews-nav:hover {
  background: var(--rosa-dark);
  transform: translateY(-50%) scale(1.1);
}

.reviews-nav.prev {
  left: -60px;
}

.reviews-nav.next {
  right: -60px;
}

.reviews-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.reviews-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-indicators button.active {
  background: var(--rosa);
  transform: scale(1.2);
}

/* MODALES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--rosa);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--rosa-dark);
  transform: rotate(90deg);
}

.modal-header {
  background: var(--amarillo);
  color: black;
  padding: 30px;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.modal-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.modal-header p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.modal-body {
  padding: 30px;
}

.instructions-step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e8f0;
  align-items: flex-start;
}

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

.step-number {
  background: var(--gradient);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.step-content h4 {
  color: var(--oscuro);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step-content p {
  color: #555;
  line-height: 1.7;
}

.step-note {
  background: rgba(255, 196, 0, 0.1);
  border-left: 4px solid var(--amarillo);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.95rem;
}

.step-note strong {
  color: var(--oscuro);
}

.tutorial-section {
  margin-top: 40px;
  background: rgba(122, 44, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 2px dashed var(--morado);
}

.tutorial-section h4 {
  color: var(--morado);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.video-thumbnail {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 79, 163, 0.9);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
  background: var(--rosa);
  transform: translate(-50%, -50%) scale(1.1);
}

.download-link {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.download-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(122, 44, 255, 0.3);
}

.modal-footer {
  padding: 20px 30px;
  background: #f8fafc;
  border-radius: 0 0 20px 20px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.support-link {
  color: var(--rosa);
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.support-link:hover {
  color: var(--rosa-dark);
  transform: translateX(5px);
}

/* BOTÓN FLOTANTE WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  z-index: 9998;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #1da851, #0d7d5d);
}

.floating-whatsapp:active {
  transform: scale(0.95);
}

/* FOOTER */
footer {
  background: var(--oscuro);
  padding: 80px 40px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--amarillo);
}

.footer-column p,
.footer-column a {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-column a:hover {
  color: var(--rosa);
  transform: translateX(5px);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.9rem;
}

/* UTILIDADES */
.currency-select {
  padding: 12px 18px;
  border-radius: 25px;
  border: 2px solid #e2e8f0;
  font-weight: 700;
  background: white;
  cursor: pointer;
  position: relative;
  outline: none;
}

.currency-select:focus {
  border-color: var(--amarillo);
  box-shadow: 0 4px 0 var(--amarillo);
}

.sweet-icon.bounce {
  display: inline-block;
  margin-right: 8px;
  animation: sweetBounce 2.5s infinite;
  transform-origin: bottom center;
  font-size: 2.5rem;
}

.reseller-plans .plan-horizontal {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 2px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 40px;
}

.reseller-plan {
  position: relative;
  overflow: visible;
}

/* Badge especial para revendedores */
.reseller-plan-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.pro-plan .reseller-plan-badge {
  background: linear-gradient(135deg, #ff9800, #f57c00);
}

.max-plan .reseller-plan-badge {
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

/* Sección de ganancias */
.reseller-profit {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 15px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 2px solid rgba(255, 79, 163, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.profit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--rosa), var(--morado));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.profit-info {
  flex: 1;
}

.profit-amount {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--rosa);
  line-height: 1;
}

.profit-label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  font-weight: 600;
}

/* =============================
   MÉTODOS DE PAGO - ESTILOS MEJORADOS
============================= */

/* Modal de pago mejorado */
.payment-modal {
 position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center; /* 🔴 CLAVE */
  z-index: 10000;
  padding: 20px;
  overflow-y: auto; /* 🔴 CLAVE */
  -webkit-overflow-scrolling: touch; /* 🔴 iOS */
}

.payment-modal.active {
  display: flex;
  opacity: 1;
}

.payment-box {
  background: #fff;
  width: 100%;
  max-width: 420px;
   max-height: calc(100vh - 46px); /* 🔴 */
   overflow-y: auto;               /* 🔴 */
  -webkit-overflow-scrolling: touch;
  border-radius: 24px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.close-modal:hover {
  background: rgba(0, 0, 0, 0.15);
  color: #333;
  transform: rotate(90deg);
}

.payment-box h3 {
  color: var(--oscuro);
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.payment-box > p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Contenedor de métodos de pago */
.payment-methods {
  display: none;
  margin-top: 20px;
  text-align: center;
}

.payment-methods.active {
  display: block;
}

.methods-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.methods-header h4 {
  color: var(--oscuro);
  font-size: 1.1rem;
  font-weight: 600;
}

.methods-header i {
  color: var(--rosa);
  font-size: 1.1rem;
}

/* Estilo mejorado para los botones de pago */
.pay-btn {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.3px;
}

.pay-btn::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.7s ease;
}

.pay-btn:hover::before {
  left: 100%;
}

.pay-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.pay-btn:active {
  transform: translateY(-1px);
}

/* Botón de Mercado Pago - Estilo oficial */
.mp-btn {
  background: linear-gradient(135deg, #009ee3 0%, #00a1e6 100%);
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.mp-btn:hover {
  background: linear-gradient(135deg, #0088cc 0%, #0093d6 100%);
  box-shadow: 0 10px 25px rgba(0, 158, 227, 0.25);
}

.mp-btn:active {
  background: linear-gradient(135deg, #0077b3 0%, #0085c2 100%);
}

/* Logo de Mercado Pago en el botón */
.mp-btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;

  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5px;
}

/* Botón de Clip - Estilo oficial */
.clip-btn {
  background: linear-gradient(135deg, #6a1b9a 0%, #7c1fb2 100%);
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.clip-btn:hover {
  background: linear-gradient(135deg, #5d1687 0%, #6d1c9e 100%);
  box-shadow: 0 10px 25px rgba(106, 27, 154, 0.25);
}

.clip-btn:active {
  background: linear-gradient(135deg, #511575 0%, #5e188a 100%);
}

/* Logo de Clip en el botón */
.clip-btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M18.54 9L8.88 3.46a2.5 2.5 0 00-2.5 0L5.12 4.45a2.5 2.5 0 00-1.25 2.17v10.76a2.5 2.5 0 001.25 2.17l1.26.73a2.5 2.5 0 002.5 0l9.67-5.54a2.5 2.5 0 001.25-2.17V11.17A2.5 2.5 0 0018.54 9zM12 17.5a5.5 5.5 0 110-11 5.5 5.5 0 010 11z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5px;
}

/* Botón secundario (alternativa) */
.pay-btn.secondary {
  background: white;
  color: #333;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pay-btn.secondary:hover {
  background: #f8fafc;
  border-color: var(--rosa);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Iconos en botones */
.pay-btn i {
  font-size: 1.2rem;
}

/* Mensaje de información */
.payment-info {
  margin-top: 25px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  border-left: 4px solid var(--rosa);
}

.payment-info p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.payment-info i {
  color: var(--rosa);
  margin-right: 8px;
}

/* Contenedor de PayPal */
#paypal-button-container {
  margin-top: 20px;
  border-radius: 12px;
overflow: visible; /* 🔴 antes hidden */
  
}

.credit-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.credit-btn {
  background: var(--gris-claro);
  border: 2px solid transparent;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.credit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.credit-btn.active {
  background: var(--rosa);
  color: white;
  border-color: var(--rosa);
  box-shadow: 0 5px 15px rgba(255, 79, 163, 0.3);
}

.credit-btn i {
  font-size: 1.2rem;
}

/* Estilos específicos para el plan dinámico de revendedores */
.reseller-plans .plan-horizontal {
  max-width: 900px;
  margin: 0 auto;
}




.plan-horizontal {
  transition: all 0.3s ease;
}

/* Efecto hover para los botones de créditos */
.credit-btn {
  position: relative;
  overflow: hidden;
}

.credit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.credit-btn:active::after {
  width: 300px;
  height: 300px;
}

.step-hidden {
  display: none;
}

.step-visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}


/* Animación para el plan dinámico */
@keyframes planChange {
  0% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* ANIMACIONES */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceGum {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  10% {
    transform: translateY(-10px) scale(1.05, 0.95);
  }
  20% {
    transform: translateY(0) scale(0.95, 1.05);
  }
  30% {
    transform: translateY(-7px) scale(1.03, 0.97);
  }
  40% {
    transform: translateY(0) scale(1);
  }
}

@keyframes sweetBounce {
  0% {
    transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-14px) scale(1.1);
  }
  55% {
    transform: translateY(0) scale(0.95);
  }
  70% {
    transform: translateY(-6px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes featuredGlow {
  0% {
    box-shadow: 0 20px 50px rgba(255, 79, 163, 0.15);
  }
  100% {
    box-shadow: 0 20px 60px rgba(255, 79, 163, 0.25);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 79, 163, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 79, 163, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 79, 163, 0);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* =============================
   RESPONSIVE
============================= */

/* TABLETS */
@media (max-width: 1024px) {
  .reviews-container {
    max-width: 95% !important; /* Cambiado de 65% */
    margin: 40px auto 0 !important;
  }

  .review-card {
    flex: 0 0 calc(50% - 25px) !important;
    min-width: 300px !important;
    max-width: 100% !important;
  }

  .reviews-track {
    gap: 25px !important;
  }

  .reviews-nav.prev {
    left: -25px !important;
  }

  .reviews-nav.next {
    right: -15px !important;
  }

  .reviews-nav {
    width: 45px !important;
    height: 45px !important;
    font-size: 17px !important;
  }
}

/* MÓVILES */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    max-height: 500px;
    padding: 10px 10px;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  header h1 {
    font-size: 2.5rem;
  }

  header p {
    font-size: 1.1rem;
  }

  section {
    padding: 60px 20px;
  }

  .carousel-slide {
    height: 300px;
  }

  .carousel-caption {
    padding: 15px;
  }

  .carousel-caption h3 {
    font-size: 1.2rem;
  }

  #beneficios .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-header h3 {
    font-size: 1.5rem;
  }

  .instructions-step {
    flex-direction: column;
    gap: 10px;
  }

  .step-number {
    margin-bottom: 10px;
  }

  .video-thumbnail {
    margin: 15px auto;
  }

  .floating-whatsapp {
    width: 60px;
    height: 60px;
    font-size: 30px;
    bottom: 20px;
    right: 20px;
  }

  .review-card {
    flex: 0 0 calc(100% - 20px);
  }

  .plans-comparison {
    margin: 30px auto 0;
    padding: 0 10px;
  }

  .comparison-card {
    padding: 20px 15px;
    border-radius: 15px;
  }

  .comparison-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .comparison-grid {
    gap: 15px;
  }

  .comparison-item {
    padding: 15px 10px;
    border-radius: 12px;
  }

  .comparison-item h5 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .comparison-item p {
    font-size: 12px;
    line-height: 1.4;
  }

  .currency-buttons {
    gap: 10px;
    margin-bottom: 30px;
  }

  .currency-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: 150px;
  }

  .currency-btn i {
    font-size: 0.9rem;
  }
  .devices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .device-item {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .device-icon {
    font-size: 38px;
    margin-bottom: 12px;
  }

  .device-item h4 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .device-item .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    margin: 5px 0;
    width: 100%;
    max-width: 180px;
  }

  /* Asegurar que los botones se mantengan en una línea */
  .device-item .btn i {
    margin-right: 5px;
  }

  .reviews-container {
    max-width: 100% !important;
    padding: 0 15px !important;
    margin: 30px auto 0 !important;
  }

  .reviews-track {
    gap: 20px !important;
    padding: 15px 10px 35px !important;
    scroll-padding: 0 15px;
  }

  .review-card {
    flex: 0 0 calc(100% - 30px) !important;
    min-width: 280px !important;
    max-width: calc(100% - 30px) !important;
    padding: 25px 20px !important;
    margin: 0 5px !important;
  }

  .review-header {
    gap: 12px !important;
    margin-bottom: 15px !important;
  }

  .review-avatar {
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
  }

  .review-info h4 {
    font-size: 1.1rem !important;
  }

  .review-date {
    font-size: 0.85rem !important;
  }

  .review-rating {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .review-content {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .review-plan {
    font-size: 0.8rem !important;
    padding: 5px 12px !important;
  }

  /* Ocultar flechas de navegación en móviles */
  .reviews-nav {
    display: none !important;
  }

  .reviews-indicators {
    margin-top: 20px !important;
  }

  .section-title .sweet-icon {
    display: none !important;
  }

  .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-title h2 {
    text-align: center;
    width: 100%;
  }
  /* Responsive */

  .credit-buttons {
    flex-direction: column;
    align-items: center;
  }

  .credit-btn {
    width: 80%;
    justify-content: center;
  }

  
}

/* MÓVILES PEQUEÑOS */
@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .bounce-gum {
    max-width: 280px;
  }

  h2 {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  #beneficios .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .devices-grid {
    grid-template-columns: 1fr;
  }

  .plans-horizontal-container {
    padding: 5px; /* Más reducido en móviles */
    max-width: 100%; /* Ocupa todo el ancho */
  }

  .plan-horizontal {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px; /* Más compacto */
    margin-bottom: 20px;
    border-radius: 15px; /* Más redondeado */
  }

  .plan-left {
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(255, 79, 163, 0.2);
  }

  .plan-left h3 {
    font-size: 1.4rem; /* Más pequeño en móviles */
    margin: 5px 0;
  }

  .price {
    font-size: 2.5rem; /* Más pequeño en móviles */
  }

  .currency-symbol {
    font-size: 1rem;
    margin-top: 0.3rem;
  }

  .plan-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    margin: 8px 0;
  }

  .plan-desc {
    font-size: 0.85rem;
    max-width: 100%;
    margin: 8px 0;
  }

  .plan-features-mini {
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .mini-feature {
    flex: 0 0 calc(50% - 8px); /* Ajustado para 2 columnas */
  }

  .mini-feature i {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }

  .mini-feature span {
    font-size: 9px;
  }

  .plan-right {
    padding-top: 15px;
  }

  .plan-features-header h4 {
    font-size: 1.1rem;
  }

  .feature-list li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  .plan-savings-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 12px;
    margin: 15px 0;
  }

  .savings-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .plan-btn {
    padding: 14px 25px;
    font-size: 0.9rem;
    max-width: 100%;
  }

  .plan-popular-badge {
    top: 10px;
    right: -30px;
    padding: 5px 35px;
    font-size: 0.65rem;
  }

  .plans-comparison {
    max-width: 1100px;
    margin: 40px auto 0; /* Reducido de 60px */
  }

  .comparison-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px; /* Reducido padding */
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 79, 163, 0.1);
    overflow: hidden; /* Previene overflow */
  }

  .comparison-card h4 {
    color: var(--oscuro);
    margin-bottom: 20px; /* Reducido de 25px */
    font-size: 20px; /* Reducido de 22px */
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* Permite que se ajuste */
  }

  .comparison-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px; /* Reducido de 30px */
  }

  .comparison-item {
    text-align: center;
    padding: 20px 15px; /* Reducido de 25px */
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.3s ease;
    overflow: hidden; /* Previene overflow */
    word-wrap: break-word; /* Rompe palabras largas */
  }

  .comparison-item h5 {
    font-size: 16px; /* Reducido de 18px */
    margin-bottom: 10px;
    color: var(--oscuro);
    line-height: 1.3;
  }

  .comparison-item p {
    color: #666;
    font-size: 13px; /* Reducido de 14px */
    line-height: 1.5;
    margin: 0;
  }

  .currency-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .currency-btn {
    width: 100%;
    max-width: 250px;
    padding: 12px 20px;
    justify-content: center;
    font-size: 0.85rem;
  }

  #Valoraciones {
    margin: 50px auto !important;
    padding: 50px 15px !important;
    border-radius: 20px !important;
  }

  .reviews-container {
    padding: 0 !important;
  }

  .reviews-track {
    gap: 15px !important;
    padding: 10px 5px 25px !important;
  }

  .review-card {
    flex: 0 0 calc(100% - 20px) !important;
    min-width: 260px !important;
    padding: 20px 15px !important;
    margin: 0 10px !important;
    border-radius: 15px !important;
  }

  .review-avatar {
    width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
  }

  .review-info h4 {
    font-size: 1rem !important;
  }

  .review-date {
    font-size: 0.8rem !important;
  }

  .review-rating {
    font-size: 0.95rem !important;
    margin-bottom: 10px !important;
  }

  .review-rating i {
    font-size: 0.9rem !important;
  }

  .review-content {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
  }

  .reviews-indicators button {
    width: 10px !important;
    height: 10px !important;
  }

  /* Responsive para métodos de pago */

  .payment-box {
    padding: 25px 20px;
    border-radius: 20px;
    max-width: 90%;
  }

  .payment-box h3 {
    font-size: 1.3rem;
  }

  .pay-btn {
    padding: 14px 16px;
    font-size: 15px;
  }

  .payment-info {
    padding: 12px;
  }

 
}

/* DISPOSITIVOS TÁCTILES */
@media (hover: none) and (pointer: coarse) {
  .nav-menu a {
    padding: 12px 16px;
  }

  .btn {
    padding: 16px 30px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .plan-btn {
    padding: 20px 30px;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
  }

  .reviews-nav {
    width: 50px;
    height: 50px;
  }

  /* Eliminar efectos hover en táctiles */
  .card:hover,
  .device-item:hover,
  .plan-horizontal:hover,
  .feature-list li:hover {
    transform: none;
  }

  .faq-question {
    padding: 20px 15px;
  }
}

/* PREVENIR ZOOM EN INPUTS */
@media (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  .currency-select {
    font-size: 16px;
    padding: 15px;
  }
}

      /* Estilos mejorados para el header con animación de cambio de nombre */
      
      /* Header estilo Candy Crush */
      #inicio {
        position: relative;
        background: linear-gradient(135deg, #ff6095, #fea82f, #e85a8a, #d7b702, #e6559d);
        background-size: 400% 400%;
        animation: candyBackground 12s ease infinite;
        overflow: hidden;
        padding-top: 100px !important;
      }

      @keyframes candyBackground {
        0% { background-position: 0% 50%; }
        25% { background-position: 50% 100%; }
        50% { background-position: 100% 50%; }
        75% { background-position: 50% 0%; }
        100% { background-position: 0% 50%; }
      }

      /* Golosinas flotantes en el header */
      .candy-floaties {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 5;
      }

      .candy-item {
        position: absolute;
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.3);
        animation: floatCandy 6s ease-in-out infinite;
      }

      .candy-item:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
      .candy-item:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s; }
      .candy-item:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 2s; }
      .candy-item:nth-child(4) { top: 40%; right: 20%; animation-delay: 3s; }
      .candy-item:nth-child(5) { bottom: 20%; right: 25%; animation-delay: 4s; }
      .candy-item:nth-child(6) { top: 60%; left: 25%; animation-delay: 5s; }
      .candy-item:nth-child(7) { bottom: 15%; left: 40%; animation-delay: 2.5s; }
      .candy-item:nth-child(8) { top: 15%; left: 60%; animation-delay: 3.5s; }
      .candy-item:nth-child(9) { bottom: 40%; right: 15%; animation-delay: 1.5s; }
      .candy-item:nth-child(10) { top: 70%; right: 40%; animation-delay: 4.5s; }

      @keyframes floatCandy {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        25% { transform: translateY(-30px) rotate(15deg); }
        50% { transform: translateY(-15px) rotate(-10deg); }
        75% { transform: translateY(-40px) rotate(5deg); }
      }

      /* Contenedor de la animación de cambio de nombre */
      .name-change-container {
        position: relative;
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px 0;
        perspective: 1000px;
        z-index: 20;
      }

      .old-name, .new-name {
        position: absolute;
        font-size: 4rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 8px;
        text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
        transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        backface-visibility: hidden;
      }

      .old-name {
        color: #ffffff;
        text-shadow: 0 0 20px #ff0, 0 0 40px #f0f, 0 0 60px #ff6b9d;
        animation: shakeAndGlow 2s ease-in-out infinite;
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(45deg, #fff, #ffd700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .new-name {
        color: #ffffff;
        opacity: 0;
        transform: rotateY(180deg) scale(0.3);
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(45deg, #ff6b9d, #ffd700, #ff69b4, #ffb347);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 300% 300%;
        animation: gradientMove 3s ease infinite;
      }

      @keyframes gradientMove {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
      }

      @keyframes shakeAndGlow {
        0%, 100% { transform: translateX(0) scale(1); filter: drop-shadow(0 0 20px #fff); }
        10%, 30%, 50% { transform: translateX(-5px) rotate(-2deg) scale(1.05); filter: drop-shadow(0 0 30px #ff0); }
        20%, 40% { transform: translateX(5px) rotate(2deg) scale(1.05); filter: drop-shadow(0 0 30px #f0f); }
        60% { transform: scale(1.2); filter: drop-shadow(0 0 50px #ff6b9d); }
        70% { transform: scale(0.95); }
        80% { transform: scale(1.1); filter: drop-shadow(0 0 40px #ffd700); }
      }

      .name-change-container.animate .old-name {
        opacity: 0;
        transform: rotateY(180deg) scale(0.3);
        animation: none;
      }

      .name-change-container.animate .new-name {
        opacity: 1;
        transform: rotateY(0) scale(1);
        animation: bounceInName 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), gradientMove 3s ease infinite;
      }

      @keyframes bounceInName {
        0% { transform: scale(0.3) rotate(-15deg); opacity: 0; }
        30% { transform: scale(1.4) rotate(10deg); opacity: 0.8; }
        50% { transform: scale(1.2) rotate(-5deg); opacity: 0.9; }
        70% { transform: scale(1.1) rotate(3deg); opacity: 1; }
        100% { transform: scale(1) rotate(0); opacity: 1; }
      }

      /* Destello blanco */
      .flash-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        opacity: 0;
        pointer-events: none;
        z-index: 100;
        animation: flashEffect 1s ease-out;
      }

      @keyframes flashEffect {
        0% { opacity: 0; transform: scale(0.5); }
        20% { opacity: 0.9; transform: scale(1.5); }
        40% { opacity: 0.7; transform: scale(1.3); }
        60% { opacity: 0.5; transform: scale(1.1); }
        80% { opacity: 0.3; transform: scale(0.9); }
        100% { opacity: 0; transform: scale(0.7); }
      }

      /* Texto explicativo */
      .change-message {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 20px;
        padding: 10px 20px;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 50px;
        display: inline-block;
        backdrop-filter: blur(5px);
        animation: pulseMessage 2s ease-in-out infinite;
        z-index: 15;
        position: relative;
      }

      @keyframes pulseMessage {
        0%, 100% { transform: scale(1); background: rgba(0, 0, 0, 0.2); }
        50% { transform: scale(1.05); background: rgba(255, 255, 255, 0.2); }
      }

      /* Ajustar el canvas de partículas */
      #particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
      }

      /* Asegurar que el contenido esté sobre las partículas */
      .effect-card, .streaming, #inicio p, #inicio .btn, .name-change-container, .change-message {
        position: relative;
        z-index: 10;
      }

      /* Mejorar visibilidad del texto */
      .streaming {
        font-size: 2.5rem;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      }






/* CARRUSEL - VERSIÓN FINAL CON DISEÑO PROFESIONAL */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 50px auto 0;
  border-radius: 60px 60px 30px 30px;
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, #fff5f8, #ffe9f0);
  padding: 25px;
}

.carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 45px 45px 25px 25px;
  overflow: visible;
  width: 100%;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.8);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  border-radius: 40px 40px 20px 20px;
  overflow: hidden;
  height: auto;
  min-height: 400px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: scale(0.98);
  transition: transform 0.3s ease;
}

.carousel-slide:hover {
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.carousel-slide:hover img {
  transform: scale(1.03);
}

/* Overlay con gradiente elegante */
.carousel-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 105, 180, 0.2), 
    rgba(255, 180, 70, 0.2),
    rgba(255, 105, 180, 0.1));
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Efecto de brillo elegante */
.carousel-slide::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0.1) 30%, 
    transparent 70%);
  opacity: 0;
  pointer-events: none;
  animation: elegantShimmer 4s infinite;
  z-index: 2;
}

@keyframes elegantShimmer {
  0% { transform: translate(-30%, -30%) rotate(0deg); opacity: 0; }
  25% { transform: translate(0%, 0%) rotate(90deg); opacity: 0.2; }
  50% { transform: translate(30%, 30%) rotate(180deg); opacity: 0.3; }
  75% { transform: translate(0%, 0%) rotate(270deg); opacity: 0.2; }
  100% { transform: translate(-30%, -30%) rotate(360deg); opacity: 0; }
}

/* Caption mejorado con glassmorphism */
.carousel-caption {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 50px 50px 25px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  z-index: 5;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.carousel-slide:hover .carousel-caption {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
}

.carousel-caption h3 {
  font-size: 2rem;
  margin: 0 0 5px 0;
  font-weight: 800;
  background: linear-gradient(135deg, #ff4fa3, #ffb347, #ff4fa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.carousel-caption h3 i {
  margin-right: 10px;
  -webkit-text-fill-color: #ff4fa3;
  background: none;
  text-shadow: 0 2px 5px rgba(255, 79, 163, 0.3);
}

.carousel-caption p {
  margin: 5px 0 0 0;
  color: #2c3e50;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Badge de calidad elegante */
.quality-badge {
  position: absolute;
  top: -12px;
  right: 25px;
  background: linear-gradient(135deg, #ff4fa3, #ffb347);
  color: white;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
  border: 2px solid white;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 6;
}

/* Botones de navegación elegantes */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff4fa3, #ffb347);
  color: white;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.5);
  z-index: 20;
  border: 3px solid white;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.7);
  background: linear-gradient(135deg, #ffb347, #ff4fa3);
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

/* Indicadores elegantes */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  z-index: 10;
  padding: 15px;
}

.carousel-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb6c1, #ffdab9);
  border: 3px solid white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-indicator.active {
  width: 45px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff4fa3, #ffb347);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255,105,180,0.5);
  border: 3px solid white;
}

.carousel-indicator:hover {
  transform: scale(1.2);
  background: linear-gradient(135deg, #ff4fa3, #ffb347);
}

/* Decoración elegante */
.candy-decoration {
  position: absolute;
  font-size: 2.2rem;
  color: rgba(255, 105, 180, 0.2);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 5px 10px rgba(255, 105, 180, 0.2));
}

.candy-decoration.left {
  top: 15px;
  left: 15px;
  transform: rotate(-15deg);
}

.candy-decoration.right {
  bottom: 15px;
  right: 15px;
  transform: rotate(10deg);
  font-size: 2.8rem;
}

/* ========== RESPONSIVE ELEGANTE ========== */

/* Tablets */
@media (max-width: 992px) {
  .carousel-container {
    max-width: 95%;
    padding: 20px;
  }
  
  .carousel-slide {
    min-height: 380px;
  }
  
  .carousel-caption {
    padding: 18px 22px;
  }
  
  .carousel-caption h3 {
    font-size: 1.8rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

/* Móviles grandes */
@media (max-width: 768px) {
  .carousel-container {
    padding: 15px;
    border-radius: 50px 50px 25px 25px;
  }
  
  .carousel-slide {
    min-height: 350px;
    border-radius: 35px 35px 18px 18px;
  }
  
  .carousel-caption {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 15px 18px;
    border-radius: 40px 40px 20px 20px;
  }
  
  .carousel-caption h3 {
    font-size: 1.5rem;
  }
  
  .carousel-caption p {
    font-size: 0.9rem;
  }
  
  .quality-badge {
    top: -10px;
    right: 15px;
    padding: 4px 14px;
    font-size: 0.75rem;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
  
  .carousel-indicator {
    width: 12px;
    height: 12px;
  }
  
  .carousel-indicator.active {
    width: 35px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .carousel-container {
    padding: 12px;
    border-radius: 40px 40px 20px 20px;
  }
  
  .carousel-slide {
    min-height: 280px;
    border-radius: 30px 30px 15px 15px;
  }
  
  .carousel-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 15px;
    border-radius: 35px 35px 18px 18px;
  }
  
  .carousel-caption h3 {
    font-size: 1.2rem;
  }
  
  .carousel-caption h3 i {
    font-size: 1rem;
  }
  
  .carousel-caption p {
    font-size: 0.8rem;
  }
  
  .quality-badge {
    top: -8px;
    right: 12px;
    padding: 3px 12px;
    font-size: 0.65rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .carousel-indicators {
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
  
  .carousel-indicator.active {
    width: 28px;
  }
  
  .candy-decoration {
    font-size: 1.5rem;
  }
  
  .candy-decoration.right {
    font-size: 1.8rem;
  }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
  .carousel-slide {
    min-height: 220px;
  }
  
  .carousel-caption {
    padding: 10px 12px;
  }
  
  .carousel-caption h3 {
    font-size: 1rem;
  }
  
  .carousel-caption p {
    font-size: 0.7rem;
    line-height: 1.4;
  }
  
  .quality-badge {
    padding: 2px 10px;
    font-size: 0.6rem;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
}