.elementor-7 .elementor-element.elementor-element-f5a4fa6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f5f2d4b */body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0f172a;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  text-align: center;
  padding: 140px 20px;
}

.hero h1 {
  font-size: 54px;
  max-width: 900px;
  margin: auto;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  opacity: 0.85;
  margin-top: 20px;
}

/* BOTON */
.btn {
  display: inline-block;
  margin-top: 35px;
  padding: 18px 34px;
  border-radius: 14px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(37,211,102,0.4);
}

/* SECCIONES */
.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

.title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

/* GRID */
.grid {
  display: grid;
  gap: 30px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* CARDS */
.card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* VS */
.vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.bad {
  background: #fff1f2;
}

.good {
  background: #ecfdf5;
}

/* TESTIMONIOS */
.testimonial {
  font-style: italic;
}

/* CTA FINAL */
.cta {
  background: #020617;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
/* =========================
   MOBILE OPTIMIZATION PRO
========================= */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    padding: 90px 20px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 16px;
  }

  /* BOTÓN PRINCIPAL */
  .btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 16px;
  }

  /* SECCIONES */
  .section {
    padding: 60px 20px;
  }

  .title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  /* GRID */
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* VS → CAMBIO CRÍTICO */
  .vs {
    grid-template-columns: 1fr;
  }

  /* CARDS */
  .card {
    padding: 25px;
  }

  /* CTA */
  .cta {
    padding: 80px 20px;
  }
}
/* =========================
   CONVERSION MAX MODE
========================= */

/* BOTON CON PULSE */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255,255,255,0.2);
  top: -10%;
  left: -10%;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { opacity: 0; }
}

/* STICKY CTA MOBILE */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #020617;
  padding: 12px;
  display: flex;
  justify-content: center;
  z-index: 9999;
}

.sticky-cta a {
  width: 95%;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

/* MICROCOPY */
.microcopy {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 8px;
}

/* URGENCIA BOX */
.urgency {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin-top: 20px;
}

/* EFECTO SCROLL */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}/* End custom CSS */