body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f7fb;
}

header {
  background: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #2a4d8f;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}

nav a:hover,
nav a:focus {
  background: linear-gradient(90deg, #e4eefc 0%, #d0e3fa 100%);
  color: #3478f6;
  box-shadow: 0 2px 8px rgba(52, 120, 246, 0.10);
  text-decoration: underline;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 100px;
  height: 55dvh;
  background: #e4eefc;
  background-image: url('./assets/WomanBG.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.hero-text {
  max-width: 480px;
  background: rgba(44, 77, 143, 0.18);
  border-radius: 24px;
  padding: 36px 32px 32px 32px;
  box-shadow: 0 4px 24px rgba(52, 120, 246, 0.13);
  color: #f3faff;
  backdrop-filter: blur(2px);
}

.hero h1 {
  font-size: 50px;
  color: #f3faff;
  text-shadow: 0 4px 24px rgba(44,77,143,0.25), 0 1.5px 4px rgba(52,120,246,0.13);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.1;
}

.btn {
  background: #3478f6;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.btn:hover {
  background: #245ecb;
}

section {
  padding: 40px;
  text-align: center;
}

h2 {
  color: #2a4d8f;
}

.products {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
  background-color: #f3faff;
}

.product {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(52, 120, 246, 0.10), 0 1.5px 4px rgba(42, 77, 143, 0.07);
  padding: 32px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  min-width: 300px;
  max-width: 660px;
}

.product:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 28px rgba(52, 120, 246, 0.16), 0 3px 8px rgba(42, 77, 143, 0.10);
}

.product img {
  background-color: #f3faff;
  border-radius: 50%;
  display: block;
  mix-blend-mode: normal;
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(52, 120, 246, 0.08);
}

.product p {
  margin: 0;
  font-size: 18px;
  color: #2a4d8f;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

.testimonios{
  background: linear-gradient(120deg, #eaf4fe 60%, #d0e3fa 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(52, 120, 246, 0.13);
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonios:hover {
  box-shadow: 0 8px 36px rgba(52, 120, 246, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.columns {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.columns div {
  width: 40%;
}

.columns h3 {
  color: #2a4d8f;
}

.columns ul {
  list-style: none;
  padding-left: 0;
}

.columns li {
  margin: 12px 0;
  padding: 10px 18px;
  background: linear-gradient(90deg, #e4eefc 0%, #f3faff 100%);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(52, 120, 246, 0.07);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  font-size: 18px;
}

.columns li:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 4px 16px rgba(52, 120, 246, 0.13);
  background: linear-gradient(90deg, #d0e3fa 0%, #eaf4fe 100%);
}

.columns li a {
  text-decoration: none;
  color: #2a4d8f;
  font-weight: 600;
  transition: color 0.2s;
}

.columns li a:hover {
  color: #3478f6;
  text-decoration: underline;
}

footer {
  background: linear-gradient(90deg, #e4eefc 0%, #d0e3fa 100%);
  color: #2a4d8f;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  padding: 32px 20px 24px 20px;
  border-top: 2px solid #c7d6ee;
  box-shadow: 0 -2px 12px rgba(52, 120, 246, 0.08);
  letter-spacing: 0.02em;
  border-radius: 24px 24px 0 0;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

footer a {
  color: #3478f6;
  text-decoration: none;
  font-weight: 600;
  margin: 0 8px;
  transition: color 0.2s;
}

footer a:hover {
  color: #245ecb;
  text-decoration: underline;
}

@media (max-width: 600px) {
  footer {
    font-size: 16px;
    padding: 16px 8px 12px 8px;
    border-radius: 12px 12px 0 0;
    margin-top: 20px;
  }
}

.titulo {
  color: #2a4d8f;
  font-size: 54px;
  margin-bottom: 20px;
}

.steps {
  padding: 40px;
  background: linear-gradient(120deg, #eaf4fe 60%, #d0e3fa 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(52, 120, 246, 0.10), 0 2px 8px rgba(42, 77, 143, 0.07);
  margin-bottom: 40px;
  transition: box-shadow 0.2s;
}

.steps:hover {
  box-shadow: 0 12px 40px rgba(52, 120, 246, 0.16), 0 4px 16px rgba(42, 77, 143, 0.13);
}

.steps img {
  width: 50dvw;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 6px 24px rgba(52, 120, 246, 0.13);
  border: 4px solid #f3faff;
  background: #f3faff;
  transition: transform 0.18s, box-shadow 0.18s;
}

.steps img:hover {
  transform: scale(1.03) rotate(-2deg);
  box-shadow: 0 12px 36px rgba(52, 120, 246, 0.18);
}

.step-text {
  width: 500px;
  text-align: left;
  background: rgba(255,255,255,0.85);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(52, 120, 246, 0.07);
  padding: 32px 28px;
  position: relative;
  z-index: 1;
}

.step-text ol {
  padding-left: 28px;
  margin-top: 18px;
}

.step-text li {
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 20px;
  color: #2a4d8f;
  background: linear-gradient(90deg, #e4eefc 0%, #f3faff 100%);
  border-radius: 12px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 2px 8px rgba(52, 120, 246, 0.07);
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  font-weight: 500;
}

.step-text ol {
  counter-reset: li;
}

.step-text li:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 4px 16px rgba(52, 120, 246, 0.13);
  background: linear-gradient(90deg, #d0e3fa 0%, #eaf4fe 100%);
  color: #245ecb;
}

.que-es {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  background-color: #f3faff;
}

.que-es img {
  width: 800px;
  height: auto;
}

.que-es-text {
  max-width: 500px;
  text-align: left;
  background: linear-gradient(120deg, #eaf4fe 60%, #d0e3fa 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(52, 120, 246, 0.13);
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, transform 0.2s;
}
.que-es-text:hover {
  box-shadow: 0 8px 36px rgba(52, 120, 246, 0.18);
  transform: translateY(-4px) scale(1.03);
}
p {
  font-size: 20px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; color: #333;
}

 
    h1 {
      text-align: center;
      font-size: 3rem;
      margin-bottom: 40px;
      color: #2a4d8f;
      text-shadow: 2px 2px 4px #00000050;
    }

    .paquetes {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .plan {
      background-color: white;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 300px;
    }

    .plan h2 {
      margin-top: 0;
      color: #2a4d8f;
    }

    .precio {
      font-size: 1.5rem;
      font-weight: bold;
      margin: 10px 0;
    }

    ul {
      padding-left: 20px;
    }

    li {
      margin-bottom: 8px;
    }

    /* Sección separadora */
    .seccion {
      margin-top: 60px;
    }

    .subtitulo {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 20px;
      color: #2a4d8f;
      text-shadow: 1px 1px 3px #00000050;
    }

@media (max-width: 1200px) {
  .steps img,
  .que-es img {
    width: 100%;
   
  }
  .step-text,
  .que-es-text {
    width: 95%;
    max-width: 95%;
  }
  .product {
    min-width: 220px;
    max-width: 480px;
    padding: 24px 12px 16px 12px;
  }
  .product img {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0px;
    height: 50dvh;
    background-position: center;
  }
  .hero-text{
    max-width: 100%;
    padding: 20px 10px 0px   10px;
   margin-left: 10px;
  }
  .columns {
    flex-direction: column;
    align-items: center;
  }
  .columns div {
    width: 90%;
    margin-bottom: 20px;
  }
  .steps,
  .que-es {
    flex-direction: column;
    padding: 30px 10px;
    gap: 20px;
  }
  .steps img,
  .que-es img {
    max-width: 100%;
    border-radius: 30px;
  }
  .step-text,
  .que-es-text {
    max-width: 95%;
    width: 95%;
  }
  section {
    padding: 20px 10px;
  }
  .product {
    min-width: 180px;
    max-width: 340px;
    padding: 16px 8px 12px 8px;
  }
  .product img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 800px) {
  .hero h1{
    font-size: 36px;
  }
  .hero-text{
    max-width: 90%;
    padding: 10px;
    margin: 10px;
  }
  .hero{
    width: 100%;
    padding: 0%;
    margin: 0px;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 5px;
    position: relative;
  }

}


@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 5px;
  }

  .hero {
    padding: 100px 0px;
    min-height: 300px;
    background-size: cover;
  }
  .titulo {
    font-size: 32px;
  }
  .products {
    flex-direction: column;
    gap: 20px;
  }
  .product {
    min-width: 120px;
    max-width: 100%;
    padding: 10px 4px 8px 4px;
  }
  .product img {
    width: 120px;
    height: 200px;
  }
  .steps,
  .que-es {
    padding: 10px 0;
  }
  .steps img,
  .que-es img {
    max-width: 90%;
    width: 95%;
    border-radius: 20px;
  }
  .step-text,
  .que-es-text {
    padding: 0 0px;
    font-size: 16px;
  }
  footer {
    font-size: 16px;
    padding: 10px 5px;
  }
  p {
    font-size: 16px;
  }
}

nav {
      position: block;
    }
    #menu-toggle {
      display: none;
      font-size: 2rem;
      cursor: pointer;
    }
    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
      overflow:visible;
      gap: 0.1rem;
    }
    @media (max-width: 768px) {
      #menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background: #fff;
        top: 6.5rem;
        left: 0;
        right: 0;
        z-index: 10;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      }
      .nav-links.active {
        display: flex;
      }
    }