    
    .subtitulo {
      color: #2e2278;
      font-weight: bold;
      font-size: 1.2rem;
      margin-top: 0.5rem;
    }

    .contenido {
      display: flex;
      flex-wrap: wrap;
      padding: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
      justify-content: center;
    }

    .izquierda {
      flex: 1 1 300px;
      padding: 1rem;
      text-align: center;
    }

    .derecha {
      flex: 1 1 400px;
      padding: 1rem;
    }

    h2 {
      color: #2e2278;
    }

    .destacado {
      font-weight: bold;
      color: #2e2278;
    }

    .boton {
      background-color: #f2912d;
      color: white;
      padding: 0.8rem 1.5rem;
      font-weight: bold;
      font-size: 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 1rem;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    }

   
    @media (max-width: 768px) {
      .contenido {
        flex-direction: column;
        text-align: center;
      }
    }