
   
    header.hero {
      background: linear-gradient(135deg, #005FAA, #43A047);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
    }
    header.hero h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    header.hero p {
      font-size: 1.2rem;
      margin-bottom: 25px;
       color: #fff;
    }
    .btn-primary {
      background-color: #fff;
      color: #005FAA;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: 0.3s;
    }
    .btn-primary:hover {
      background-color: #005FAA;
      color: #fff;
    }
    section {
      padding: 80px 20px;
      max-width: 1100px;
      margin: 0 auto;
      
    }
    section h2 {
      color: #005FAA;
      text-align: center;
      margin-bottom: 40px;
    }
    .features, .personas {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      text-align: center;
    }
    .feature, .persona {
      background: #ffffff;
      border-radius: 15px;
      padding: 30px 20px;
      box-shadow: 0 4px 10px rgba(119, 119, 230, 0.972);
      transition: transform 0.3s;
     
    }
    .feature:hover {
      transform: translateY(-5px);
    }
    .feature span {
      font-size: 2.5rem;
      color: #43A047;
    }
    .persona h4 {
      color: #005FAA;
      margin-bottom: 10px;
    }
    .cta {
      text-align: center;
      background: #005FAA;
      color: #fff;
      padding: 80px 20px;
    }
    .cta h2 {
      color: #fff;
      margin-bottom: 20px;
    }

    .cta p{
      color: #fff;
    }
    .btn-whatsapp {
      background-color: #25D366;
      color: white;
      padding: 12px 35px;
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: 0.3s;
    }
    .btn-whatsapp:hover {
      background-color: #128C7E;
    }