/* CTA Section Component */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 79, 143, 0.95), rgba(15, 16, 18, 0.9));
}

.cta-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 24, 48, 0.35), rgba(9, 24, 48, 0.85));
    z-index: 2;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}

.cta-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.35s ease;
    border-radius: .75rem;
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-actions .btn {
    border-radius: .75rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.cta-actions .btn:hover {
    transform: translateY(-2px);
}

.cta-actions .btn-primary {
    background: #f28322;
    border-color: #f28322;
    color: #f4f6fb;
}

.cta-actions .btn-primary:hover {
    background: #f4f6fb;
    border-color: #f28322;
    color: #f28322;
}

.cta-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.65);
    color: #ffffff;
}

.cta-actions .btn-outline-light:hover {
    color: #0a1830;
    background: #ffffff;
    border-color: #ffffff;
}

/* Responsividade */
@media (min-width: 992px) {
    .cta-actions {
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .cta-actions .btn {
        width: auto;
        margin-bottom: 0;
    }

    .cta-card h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .cta-card {
        padding: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .cta-actions .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .cta-actions .btn:last-child {
        margin-bottom: 0;
    }
}

