* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: 'Poppins', sans-serif;
  color: white;
  background-color: white;
}


header {
  /*background-image: url('../images/background1.png');*/
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/background1.png') center/cover no-repeat;
  /* reemplaza con tu fondo */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  position: relative;
  background-color: black;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  float: right;
}

.logo {
  max-height: 200px;

}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: yellow;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 100px 10%;
  min-height: calc(100vh - 80px);
}

.hero-text {
  max-width: 800px;
  display: flex;

  align-items: flex-start;
  height: 100vh;
  /* Ocupa toda la pantalla */
  flex-direction: column;
  text-align: left;
  /* Centra el texto */
  padding: 0 20px;
  /* Espaciado lateral para móviles */

}

.hero-text h1 {
  /*  width: 100%;           /* Usa todo el espacio posible */
  max-width: 800px;
  /* No se pasa de este tamaño */
  font-size: 2.6rem;
  /* Puedes ajustarlo si quieres más grande */
  font-weight: 800;
  color: yellow;
  margin-bottom: 50px;
}

.hero-text h1 span {
  color: yellow;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  float: left;
  text-align: left;
  color: white;
}

.benefits {
  list-style: none;
  margin-bottom: 30px;
  float: left;
  /* Centra el texto */
}

.benefits li {
  color: white;
  margin-bottom: 10px;
  font-size: 1rem;
  text-align: left;
  /* Centra el texto */
}

.buttons {
  display: flex;
  gap: 20px;
}

.hero-text p,
.hero-text h1 {
  margin-left: 0;
  padding-left: 0;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.pink {
  border: 2px solid transparent;
  background: #ff00c8;
  color: black;
}

.btn.outline {
  border: 2px solid white;
  color: white;
}

.btn.pink:hover {
  color: #fff;
  border-color: white;
  background: transparent;
  /* fondo transparente al hacer hover */
}

.btn.outline:hover {
  background: #ff00c8;
  border-color: transparent;
}

body {
  margin: 0;
  background-color: white;
  width: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('tu-imagen.jpg') no-repeat center center/cover;
  /*background-color: black; /* fallback si no tienes imagen aún */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 100px 40px;
  text-align: center;
}

.wave-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
}

.wave-container svg {
  width: 100%;
  height: 100%;
  display: block;
}

.seccion-oferta {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.subtitulo {
  color: #ff00c8;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.titulo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.descripcion {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.tarjetas-contenedor {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.tarjetas-contenedor {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* TARJETA */
.tarjeta {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 320px;
  box-shadow: none;
  transition: all 0.3s ease;
  text-align: left;
  border: 1px solid #eee;
}

/* SOMBRA AL HACER HOVER */
.tarjeta:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ÍCONO CIRCULAR CENTRADO */
.icono {
  width: 70px;
  height: 70px;
  background-color: #ff00c8;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin: 0 auto 20px auto;
}


/* CAMBIO DE COLOR EN EL FONDO DEL ÍCONO AL HOVER */
.tarjeta:hover .icono {
  background-color: #0047ff;
}

/* TÍTULO */
.tarjeta h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ENLACE EN EL TÍTULO */
.tarjeta h3 a {
  text-decoration: underline;
  color: #1c1c1c;
}

/* TEXTO DEL PÁRRAFO */
.tarjeta p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}


.hero2 {
  position: relative;
  background: linear-gradient(90deg, #ff00c8, #7000ff);
  color: white;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.hero2 h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

.hero2 h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: #ffe600;
}

.contador {
  font-size: 4rem;
  font-weight: 600;
  margin: 1rem 0 0.2rem;
}

.wave-bottom path {
  fill: #fdfdff;
  /* Asegura que el color del fondo sea igual al fondo de abajo */
}

.wave-bottom {
  position: static;
  background: linear-gradient(90deg, #ff00c8, #7000ff);
}

.features-section {
  font-family: 'Poppins', sans-serif;
}

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

.features-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features-text {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

.features-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.features-text .intro {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.icon {
  font-size: 30px;
  width: 70px;
  height: 70px;
  padding: 1rem;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon.pink {
  background-color: #ff00c8;
}

.icon.blue {
  background-color: #2900ff;
}

.icon.pink:hover {
  background-color: #2900ff;
}

.icon.blue:hover {
  background-color: #ff00c8;
}


.feature-content h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

.feature-content p {

  font-size: 0.95rem;
  color: #555;
  margin: 0.2rem 0 0;
}

body {
  font-family: 'Poppins', sans-serif;
}

.bt-section {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.bt-subtitle {
  color: #e600c9;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.bt-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4rem;
}

.bt-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.bt-left {
  display: flex;
  max-width: 600px;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.bt-icon {
  width: 50px;
  height: 50px;
  background-color: #e600c9;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.bt-icon:hover {
  background-color: #ff00cc;
  cursor: pointer;
}

.bt-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.bt-right img {
  width: 250px;
  border-radius: 0.5rem;
}

.bt-footer-text {
  color: #e600c9;
  font-size: 0.85rem;
  margin-top: 4rem;
  letter-spacing: 0.5px;
}

.btg-benefits-section {
  background-color: #fff;
  text-align: center;
}

.btg-benefits-subtitle {
  text-transform: uppercase;
  color: #ff00a0;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.btg-benefits-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 1rem;
}

.btg-benefits-description {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.benefits-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.horizontal-line {
  height: 2px;
  width: 100%;
  background-color: blue;
  margin-bottom: 1rem;
}

.benefit-box {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0;
  margin-top: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: blue;
  font-size: 1.1rem;
}

.benefit-item i {
  font-size: 2rem;
  color: #f0f;
  flex-shrink: 0;
}

.benefit-center {
  text-align: center;
  position: relative;
  flex: 1;
  max-width: 380px;
}

.benefit-center img {
  width: 100%;
  border-radius: 1rem;
  display: block;
  position: relative;
  text-align: center;
  flex: 1;
  max-width: 580px;
}

.cta-button {
  position: absolute;
  bottom: 2rem;
  transform: translateX(-50%);
  font-weight: bold;
  background-color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0.75rem 2rem;
  min-width: 220px;
  display: block;
  margin: 40px auto 0 auto;
  /* top - auto - bottom - auto (horizontal center) */
  text-align: center;
}

.benefit-center {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.cta-button:hover {
  background-color: #0047ff;
  color: white;
}

/* Animaciones */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 2s ease;
}

.slideInLeft {
  animation: slideInLeft 1s ease forwards;
}

.slideInRight {
  animation: slideInRight 1s ease forwards;
}

.slideInBottom {
  animation: slideInBottom 1s ease forwards;
}

.rectangulo-amarillo {

  background-color: #ffd500;
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1rem;
}

.benefit-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  margin-top: 0;
}

.horizontal-line {
  height: 2px;
  width: 100%;
  background-color: blue;
  margin-bottom: 1rem;
  margin-top: 1rem;
  align-self: stretch;
}

.left-box,
.right-box {
  min-height: 430px;
  /* Ajusta este número según el contenido más largo */
}

.hero3 {
  position: relative;
  background: linear-gradient(180deg, #3f00ff, #ff00cc);
  color: white;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.hero-content3 {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero3 h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero3 p {
  font-size: 1.2rem;
  color: #ffdd00;
  font-weight: 400;
}

.hero3 .highlight3 {
  font-weight: 700;
  color: #ffd500;
}

.form-container {
  border: none;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  margin: 60px auto;
  backdrop-filter: blur(8px);
  /* Difumina si hay fondo detrás */
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
  border-color: #5c00ff;
  outline: none;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(92, 0, 255, 0.1);
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
  color: #333;

}

.form-container label {
  display: block;
  text-align: left;
  /* ✅ Fuerza alineación a la izquierda */
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.radio-group label {
  font-weight: normal;
  display: flex;
  align-items: left;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #333;
}

.button2 {
  background-color: #ff00cc;
  color: white;
  border: 1px solid transparent;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: background 0.3s ease;
}

.button2:hover {
  background-color: white;
  border-color: #0047ff;
  color: #0047ff;
}

/* Botón flotante WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 12px;
  background: #25D366;
  color: white;
  padding: 9px 12px;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
  background: white;
  color: #25D366;
}

form {
  background: rgba(255, 255, 255, 0.9);
  /* Fondo blanco suave y moderno */
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
  line-height: 0.8;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: border 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #b832f0;
  outline: none;
}

.socials {
  text-align: center;
  color: black;
  font-family: sans-serif;
}

.socials p {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: bold;
}

.icon-container {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icon {
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  color: black;
  font-size: 30px;
  transition: transform 0.2s ease, background-color 0.2s;

}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #e4e4e4;
}

.footer-personalizado {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.footer-personalizado .texto-gris {
  color: #6c757d;
  margin-bottom: 4px;
  font-weight: normal;
}

.linea-gris {
  width: 60%;
  margin: 0 auto;
  border: none;
  border-top: 1px solid #ccc;
  padding-bottom: 5px;
}

.footer-personalizado .texto-negro {
  color: #000000;
  font-weight: 500;
  font-weight: normal;
}

/* Responsive */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

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

  /* Benefits */
  .benefits-container {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
  }

  .benefit-box,
  .benefit-center {
    max-width: 90%;
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .benefit-item {
    justify-content: center;
    text-align: left;
  }

  .benefit-item i {
    font-size: 1.5rem;
  }

  .benefit-center img {
    max-width: 100%;
    height: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
  }

  .cta-button {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }

  .left-box,
  .right-box {
    min-height: auto;
  }

  .cta-button {
    position: static;
    transform: none;
    margin-top: 1rem;
    align-self: center;
    /* Centrado horizontal */
  }

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

}
.pricing-section {
  padding: 60px 20px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-subtitle {
  color: #ff00c8;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.pricing-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
}

.pricing-description {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.plans-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.plan-card {
  background: white;
  border-radius: 16px;
  padding: 25px 20px;
  border: 2px solid #eee;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #ff00c8;
}

.plan-card.featured {
  border-color: #ff00c8;
}

.plan-card.featured::before {
  content: 'MÁS POPULAR';
  position: absolute;
  top: 15px;
  right: -30px;
  background: #ff00c8;
  color: white;
  padding: 4px 35px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: #ff00c8;
  margin-bottom: 4px;
}

.plan-price.free {
  color: #25D366;
}

.plan-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #666;
}

.plan-limit {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.plan-features {
  list-style: none;
  margin-bottom: auto;
  flex-grow: 1;
}

.plan-features li {
  padding: 8px 0;
  color: #444;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-features li i {
  color: #25D366;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li strong {
  color: #1c1c1c;
  display: block;
}

.commission-box {
  background: linear-gradient(135deg, #ff00c8 0%, #7000ff 100%);
  color: white;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  margin-top: 15px;
}

.commission-box strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.commission-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

.plan-cta {
  display: block;
  width: 100%;
  padding: 12px;
  background: #ff00c8;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.plan-cta:hover {
  background: #0047ff;
  transform: translateY(-1px);
}

.bonus-plan {
  background: linear-gradient(135deg, #444 0%, #666 100%);
  color: white;
}

.bonus-plan .plan-name,
.bonus-plan .plan-price,
.bonus-plan .plan-limit {
  color: white;
}

.bonus-plan .plan-features li {
  color: #f0f0f0;
}

.bonus-plan .plan-features li i {
  color: #ffd500;
}

.bonus-plan .plan-cta {
  background: #ffd500;
  color: #1c1c1c;
}

.bonus-plan .plan-cta:hover {
  background: white;
}

.ai-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff00c8, #0047ff);
  color: white;
  padding: 2px 8px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 4px;
}

/* Responsive */
@media (max-width: 968px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .plans-grid-bottom {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .pricing-title {
    font-size: 1.5rem;
  }
  
  .plan-price {
    font-size: 1.8rem;
  }
  
  .plan-card {
    min-height: auto;
  }
}