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

    body {
      font-family: Arial, sans-serif;
      background-color: #f8f8fb;
      color: #111;
      line-height: 1.6;
    }


    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px 10%;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1;
      min-width: 300px;
    }

    .hero-text h1 {
      font-size: 2.8rem;
      font-weight: bold;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-text p {
      margin-bottom: 20px;
      color: #333;
    }

    .hero-text button {
      padding: 12px 30px;
      font-size: 1rem;
      border: none;
      border-radius: 25px;
      background: black;
      color: white;
      cursor: pointer;
    }

    .hero-image {
      flex: 1;
      min-width: 300px;
      position: relative;
      text-align: center;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
    }

    /* Logo circular */
    .circle-logo {
      position: absolute;
      top: -30px;
      right: -30px;
      width: 100px;
      height: 100px;
    }

    /* Cuadros de abajo */
    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 40px 10%;
    }

    .feature {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      font-size: 0.9rem;
      box-shadow: 0px 2px 5px rgba(0,0,0,0.05);
    }

    .feature:nth-child(2) {
      background: #e6e9f5; 
    }

    .feature h3 {
      margin-bottom: 10px;
      font-size: 1rem;
    }
     .feature:nth-child(4) {
      background: #e6e9f5; 
    }

    /* Responsivo */
    @media (max-width: 1024px) {
      .features {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      .features {
        grid-template-columns: 1fr;
      }
    }