/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fredoka", sans-serif;
  line-height: 1.6;
  color: #6E10EA;
  /* background: linear-gradient(135deg, #ffe066 0%, #ff6b6b 100%); */
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  padding: 1.1rem 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 100;
  margin: 20px 20px 0 20px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b6b;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 62px;
  width: auto;
  transition: height 0.2s;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 1.22rem;
}

.nav-link {
  color: #2d1b69;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  background: #f2f2f2;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #6e10ea;
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.header-cta {
  background: #6e10ea;
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  font-size: 1.12rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
  font-family: "Fredoka", sans-serif;
  margin-left: 1.2rem;
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

/* Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: #6e10ea;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero-highlight {
  background: #6e10ea;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 4.5rem;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #2d1b69;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: #6e10ea;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: #2d1b69;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.primary-cta {
  background: #6e10ea;
  color: white;
  border: none;
  padding: 25px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
  font-family: "Fredoka", sans-serif;
}

.primary-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.9);
  color: #2d1b69;
  border: 2px solid #ff6b6b;
  padding: 23px 48px;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Fredoka", sans-serif;
}

.secondary-cta:hover {
  background: #ff6b6b;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.floating-toy {
  position: absolute;
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.3;
}

.toy-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.toy-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.toy-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.toy-4 {
  top: 40%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Sections */
section {
  padding: 80px 0;
  margin: 40px 0;
}

/* Hero Content */
.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: linear-gradient(135deg, #ffe066, #ff6b6b);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

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

.product-image {
  height: 250px;
}

.anclaficha {
  text-align: center;
}

.product-icon {
  font-size: 3rem;
  background: rgba(255, 255, 255, 0.9);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-description {
  color: white;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

h2 {
  text-align: center;
}

.product-note {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.buy-button {
  background: white;
  color: #ff6b6b;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Fredoka", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.buy-button:hover {
  background: #2d1b69;
  color: white;
  transform: scale(1.05);
}

/* Combo Offer */
.combo-offer {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: white;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
  margin-top: 40px;
}

.combo-offer h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.combo-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.savings {
  color: #ffe066;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.combo-button {
  background: white;
  color: #4ecdc4;
  border: none;
  padding: 20px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Fredoka", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.combo-button:hover {
  background: #2d1b69;
  color: white;
  transform: scale(1.05);
}

/* Upcoming */
.upcoming-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #2d1b69;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.upcoming-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.upcoming-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.upcoming-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.upcoming-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1b69;
  margin-bottom: 10px;
}

.upcoming-item p {
  color: #666;
  line-height: 1.5;
}

/* Process */
.process-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.step-number {
  background: #6e10ea;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d1b69;
  margin-bottom: 5px;
}

.step-content p {
  color: #666;
  font-size: 0.95rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.benefit h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1b69;
  margin-bottom: 10px;
}

.benefit p {
  color: #666;
  line-height: 1.5;
}

/* Community */
.community-text {
  text-align: center;
  font-size: 1.2rem;
  color: #2d1b69;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-button {
  background: #6e10ea;
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Fredoka", sans-serif;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  display: block;
  margin: 0 auto;
}

.instagram-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.final-button {
  background: white;
  color: #ff6b6b;
  border: none;
  padding: 25px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Fredoka", sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.final-button:hover {
  background: #2d1b69;
  color: white;
  transform: translateY(-3px) scale(1.05);
}

.guarantee {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: #2d1b69;
  color: white;
  text-align: center;
  padding: 40px 0;
  margin: 0;
  border-radius: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.footer-contact {
  text-align: right;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.footer p {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Modal ficha técnica */
.modal-ficha {
  display: none; /* Se muestra con JS */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-ficha[style*="display: flex"] {
  display: flex !important;
}

.modal-ficha-content {
  background: #fff;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border-radius: 16px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  position: relative;
  text-align: center;
  animation: modalIn 0.25s;
}

@keyframes modalIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-ficha-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1;
}

.modal-ficha-close:hover {
  color: #e74c3c;
}

/* Nueva sección: Entrega en manos */
.entrega-manos {
  background: #f8fafc;
  padding: 3rem 0 2.5rem 0;
}

.entrega-manos-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.entrega-manos-texto h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  text-align: left;
  letter-spacing: -1px;
}

.entrega-manos-imagen img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 700px) {
  .entrega-manos-flex {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .entrega-manos-texto h2 {
    font-size: 2rem;
    text-align: center;
  }
  .entrega-manos-imagen img {
    max-width: 160px;
    margin: 0 auto;
  }
}

/* Header y navegación más grande */
.header {
  padding: 1.1rem 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header .container {
  min-height: 68px;
}

.logo img {
  height: 62px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 1.22rem;
}

.nav-link {
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.header-cta {
  font-size: 1.12rem;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  margin-left: 1.2rem;
}

/* Hamburguesa */
.hamburger {
  width: 44px;
  height: 44px;
}

/* Menú móvil más grande */
@media (max-width: 700px) {
  .header .container {
    min-height: 58px;
  }
  .logo img {
    height: 46px;
  }
  .nav {
    font-size: 1.18rem;
    gap: 1.5rem;
    width: 85vw;
    max-width: 370px;
    padding: 6rem 2.2rem 2.2rem 2.2rem;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-highlight {
    font-size: 3.2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    max-width: 300px;
  }

  .nav {
    gap: 15px;
  }

  .nav-link {
    padding: 8px 15px;
    font-size: 1rem;
  }

  .floating-toy {
    font-size: 2rem;
  }

  .header .container {
    flex-direction: column;
    gap: 20px;
  }

  .container {
    padding: 0 10px;
  }
}

@media (max-width: 900px) {
  .header .container {
    min-height: 44px;
  }
  .logo img {
    height: 44px;
  }
  .nav {
    gap: 0.7rem;
    font-size: 0.98rem;
  }
  .header-cta {
    font-size: 0.98rem;
    padding: 0.38rem 0.9rem;
    margin-left: 0.5rem;
  }
}

@media (max-width: 700px) {
  .header .container {
    min-height: 44px;
    position: relative;
  }
  .logo img {
    height: 38px;
  }
  .hamburger {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
  .header-cta {
    display: none;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 70vw;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 4.5rem 2rem 2rem 2rem;
    gap: 1.2rem;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
    transition: right 0.3s;
    z-index: 1000;
  }
  .nav.open {
    right: 0;
  }
}

/* Opcional: oscurecer fondo al abrir menú móvil */
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 999;
  pointer-events: auto;
}
