.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6a0dad; /* morado */
    color: white;
    padding: 40px;
    border-radius: 12px;
    font-family: sans-serif;
}

.banner-left {
    flex: 1;
    padding-right: 20px;
}

    .banner-left h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .banner-left p {
        font-size: 1em;
        line-height: 1.5;
    }

.banner-right {
    flex: 1;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

    .banner-right label {
        display: block;
        margin-top: 15px;
        font-size: 0.9em;
    }

    .banner-right input {
        width: 100%;
        padding: 8px;
        border: none;
        border-radius: 5px;
        margin-top: 5px;
    }

    .banner-right button {
        width: 100%;
        margin-top: 20px;
        padding: 10px;
        background-color: white;
        color: #6a0dad;
        border: none;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
    }

        .banner-right button:hover {
            background-color: #f0e6ff;
        }

