/* ========================================
   SECCIÓN 6: CTA FINAL
   ======================================== */

.cta-final-section {
    background-color: #32271D !important; /* Café oscuro */
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-final-title {
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 900 !important;
    font-size: 3rem;
    color: #EDE1D0 !important; /* Beige */
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-final-subtitle {
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.3rem;
    color: #EDE1D0 !important; /* Beige */
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Botón Gigante */
.cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #DBA95F; /* Dorado */
    color: #32271D !important; /* Café */
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(219, 169, 95, 0.3);
}

.cta-final-btn:hover {
    background-color: #A97B3C; /* Dorado oscuro */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(219, 169, 95, 0.4);
}

/* Ícono de flecha en el botón */
.cta-final-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-final-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-final-section {
        padding: 60px 20px;
    }
    
    .cta-final-title {
        font-size: 2rem;
    }
    
    .cta-final-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-final-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
