/* --- ESTILO GERAL DO CTA --- */
.cta {
    padding: 80px 0;
}

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

.cta-text, .cta-image {
    flex: 1;
}

/* --- ESTILO DO TEXTO (ESQUERDA) --- */

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.cta .hovered-secondary {
    margin-top: 12px;
}

.cta-hat {
    color: var(--Grey-50);
    font-size: 16px;
    font-weight: thinner;
    letter-spacing: 1px;
    width: fit-content;

    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 14px;
    border-radius: 64px;
}

.cta-title {
    color: var(--Grey-50);
    font-size: 56px;
    font-weight: 100px;
    text-align: left;
    line-height: 1.3;
    max-width: 543px;
}

.cta-description {
    color: var(--Grey-50);
    font-size: 16px;
    font-weight: 100;
    text-align: left;
    max-width: 543px;
}

/* --- ESTILO DA LISTA DE BENEFÍCIOS --- */
.cta-benefits {
     list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    
    color: var(--Grey-50);
    font-weight: thinner;
    font-size: 16px;
}

.cta-benefits li svg {
    min-width: 24px;
    min-height: 24px;
}

/* --- ESTILO DA IMAGEM (DIREITA) --- */
.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image > img {
    width: 550px;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;

    border: 10px solid rgba(180, 210, 255, 0.2);
    box-shadow: 
        inset 0 0 3px 2px rgba(220, 235, 255, 0.4),0 0 80px -15px rgba(80, 140, 255, 0.6);
}