.cta-section {
    display: none; /* REMOVER  */
    background-color: var(--black-100);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.7rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.highlight {
    color: var(--green);
    font-weight: 500;
}

.cta-button-container {
    margin-top: 3rem;
}
  
.cta-button {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.2rem 4.2rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
  
    .cta-text {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2.5rem;
        border-radius: 1.5rem;
        width: 100%;
        max-width: 300px;
    }
    
}