 <style>

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

    body{
      font-family:'Inter',sans-serif;
      background:#ffffff;
      color:#111827;
      line-height:1.6;
    }

    a{
      text-decoration:none;
    }

    .container{
      width:90%;
      max-width:1200px;
      margin:auto;
    }

    header{
      padding:20px 0;
      position:sticky;
      top:0;
      background:#fff;
      z-index:999;
      border-bottom:1px solid #eee;
    }

    .navbar{
      display:flex;
      justify-content:space-between;
      align-items:center;
    }

    .logo img{
      height:42px;
    }

    .nav-buttons{
      display:flex;
      gap:15px;
    }

    .btn{
      padding:14px 24px;
      border-radius:12px;
      font-weight:600;
      transition:.3s;
      display:inline-block;
    }

    .btn-primary{
      background:#005CAA;
      color:#fff;
    }

    .btn-primary:hover{
      background:#004b8d;
    }

    .btn-secondary{
      border:1px solid #d1d5db;
      color:#111827;
    }

    .hero{
      padding:100px 0;
      background:linear-gradient(to bottom,#f8fbff,#ffffff);
    }

    .hero-content{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
    }

    .hero h1{
      font-size:60px;
      line-height:1.1;
      margin-bottom:25px;
      font-weight:800;
    }

    .hero p{
      font-size:20px;
      color:#4b5563;
      margin-bottom:35px;
    }

    .hero-buttons{
      display:flex;
      gap:15px;
      flex-wrap:wrap;
    }

    .hero-image img{
      width:100%;
      border-radius:24px;
      box-shadow:0 20px 60px rgba(0,0,0,.08);
    }
    
    .meta-badge{
     display:flex;
     align-items:center;
     gap:10px;
     margin-top:18px;
     font-size:14px;
     color:#6b7280;
    }

.meta-badge img{
  height:50px;
}

    section{
      padding:100px 0;
    }

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

    .section-title h2{
      font-size:42px;
      margin-bottom:15px;
    }

    .section-title p{
      color:#6b7280;
      font-size:18px;
      max-width:700px;
      margin:auto;
    }

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

    .grid-4{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:25px;
    }

    .card{
      background:#fff;
      padding:35px;
      border-radius:24px;
      border:1px solid #eee;
      transition:.3s;
    }

    .card:hover{
      transform:translateY(-5px);
      box-shadow:0 20px 40px rgba(0,0,0,.06);
    }

    .card img{
      width:55px;
      margin-bottom:20px;
    }

    .card h3{
      margin-bottom:15px;
      font-size:24px;
    }

    .card p{
      color:#6b7280;
    }

    .feature-section{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:70px;
      align-items:center;
      margin-bottom:120px;
    }

    .feature-section img{
      width:100%;
      border-radius:24px;
      box-shadow:0 20px 60px rgba(0,0,0,.08);
    }

    .feature-text h2{
      font-size:42px;
      margin-bottom:20px;
    }

    .feature-text p{
      color:#6b7280;
      margin-bottom:25px;
      font-size:18px;
    }

    .feature-list{
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .feature-item{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:500;
    }

    .feature-item::before{
      content:"✓";
      color:#005CAA;
      font-weight:700;
    }

    .channels{
      background:#f9fafb;
    }

    .channels-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:20px;
      margin-top:50px;
    }

    .channel-card{
      background:#fff;
      border-radius:20px;
      padding:30px;
      text-align:center;
      border:1px solid #eee;
    }

    .channel-card img{
      height:50px;
      margin-bottom:15px;
    }

    .channel-card h4{
      font-size:18px;
    }

    .stats{
      background:#005CAA;
      color:#fff;
      border-radius:30px;
      padding:70px;
      margin-top:80px;
    }

    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:30px;
      text-align:center;
    }

    .stat h3{
      font-size:50px;
      margin-bottom:10px;
    }

    .cta{
      text-align:center;
      background:linear-gradient(to right,#003869,#005CAA);
      color:#fff;
      padding:100px 30px;
      border-radius:40px;
    }

    .cta h2{
      font-size:52px;
      margin-bottom:20px;
    }

    .cta p{
      max-width:700px;
      margin:auto;
      margin-bottom:35px;
      font-size:20px;
      opacity:.9;
    }

    footer{
      padding:60px 0;
      text-align:center;
      color:#6b7280;
    }

    footer img{
      height:40px;
      margin-bottom:20px;
    }

    @media(max-width:992px){

      .hero-content,
      .feature-section,
      .grid-3,
      .grid-4,
      .channels-grid,
      .stats-grid{
        grid-template-columns:1fr;
      }

      .hero h1{
        font-size:42px;
      }

      .section-title h2,
      .feature-text h2,
      .cta h2{
        font-size:34px;
      }

      .stats{
        padding:40px;
      }

    }
    
    /* PLANES */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:50px;
}

.pricing-card{
  background:#fff;
  border-radius:28px;
  padding:40px 30px;
  border:1px solid #e5e7eb;
  position:relative;
  transition:.3s;
}

.pricing-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.pricing-card h3{
  font-size:28px;
  margin-bottom:20px;
}

.price{
  font-size:52px;
  font-weight:800;
  color:#003869;
  margin-bottom:20px;
}

.price span{
  font-size:16px;
  color:#6b7280;
  font-weight:500;
}

.plan-description{
  color:#6b7280;
  margin-bottom:30px;
  min-height:90px;
}

.plan-features{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:35px;
  color:#374151;
}

.full-btn{
  width:80%;
  text-align:center;
}

.featured-plan{
  border:2px solid #005CAA;
  transform:scale(1.03);
}

.popular-badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#005CAA;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
}

.custom-plan{
  background:linear-gradient(to bottom right,#003869,#005CAA);
  color:#fff;
}

.custom-plan .plan-description,
.custom-plan .plan-features{
  color:rgba(255,255,255,.9);
}

.custom-plan .btn-primary{
  background:#fff;
  color:#003869;
}

.custom-icon{
  font-size:55px;
  margin-bottom:20px;
}

@media(max-width:992px){

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

  .featured-plan{
    transform:none;
  }

}

.pricing-section{
  padding:100px 0;
  background:#f9fafb;
}

.pricing-container{
  width:80%;
  max-width:1400px;
  margin:auto;
}


/* CARACTERÍSTICAS */

.features-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:50px;
}

.feature-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:30px;
  transition:.3s;
}

.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.06);
}

.feature-card img{
  width:55px;
  margin-bottom:20px;
}

.feature-card h3{
  font-size:22px;
  margin-bottom:12px;
}

.feature-card p{
  color:#6b7280;
  font-size:15px;
  line-height:1.6;
}

@media(max-width:992px){

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

}

  </style>