#cta {
    width: 100%;
    padding: 80px 8%;
    background-color: #61168C;
}

.cta-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #ffffff;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.cta-text p {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

.btn-cta {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00ffc8;
    color: #61168C;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: fit-content;
}

.btn-cta:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0px 5px 20px rgba(0, 255, 200, 0.4);
}

/* Responsividade */
@media (max-width: 968px) {
    .cta-content {
        flex-direction: column;
        gap: 40px;
    }

    .cta-image {
        justify-content: center;
        width: 100%;
    }

    .cta-image img {
        max-width: 100%;
    }

    .cta-text {
        text-align: center;
        align-items: center;
    }

    .cta-text h2 {
        font-size: 2.5rem;
    }

    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    #cta {
        padding: 60px 5%;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1.1rem;
    }

    .btn-cta {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

