/* Estilos para a seção CTA Final */
.cta-section {
    background: #12022b; /* Mesmo fundo do site */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    position: relative;
    line-height: 1.3;
    text-transform: none;
    width: 100%;
    display: block;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #9333EA;
    border-radius: 3px;
}

.cta-title .first-line {
    display: block;
    white-space: nowrap;
    color: #ffffff;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.cta-title .second-line {
    display: block;
    color: #9333EA;
    margin: 10px auto 0;
    text-align: center;
    width: 100%;
    font-weight: 700;
}

/* Responsividade para títulos */
@media (max-width: 1199px) {
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }
    
    .cta-title .first-line,
    .cta-title .second-line {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.6rem;
    }
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background: #9333EA;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Estilo hover para o botão CTA */
.cta-section .cta-container .cta-content .cta-button:hover,
.cta-button:hover {
    background: #10B981 !important; /* Verde */
    color: white !important; /* Garante que o texto fique branco */
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3) !important;
    border: none !important;
}

/* Responsividade */
@media (max-width: 1200px) {
    .cta-title {
        font-size: 2.8rem;
    }
    
    .cta-title .first-line,
    .cta-title .second-line {
        display: block;
        white-space: nowrap;
        margin-left: 0;
        text-align: center;
    }
    
    .cta-title .second-line {
        margin-top: 10px;
    }
}

@media (max-width: 992px) {
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-title .first-line,
    .cta-title .second-line {
        display: block;
        white-space: nowrap;
        width: 100%;
        text-align: center;
    }
    
    .cta-title .second-line {
        margin: 10px 0 0 0;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-title .first-line,
    .cta-title .second-line {
        white-space: normal;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .cta-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-title .first-line,
    .cta-title .second-line {
        white-space: normal;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .cta-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .cta-button {
        width: 90%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}
