/* Estilos para botones CTA con buen contraste */
.cta-section h2 {
    color: white !important;
    margin-bottom: 20px;
}

.cta-section p {
    color: white !important;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-white {
    background: white !important;
    color: #0066cc !important;
    border: 2px solid white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f8f9fa !important;
    color: #0052a3 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

.btn-outline-white {
    background: transparent !important;
    color: white !important;
    border: 2px solid white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white !important;
    color: #0066cc !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* Para secciones CTA con fondo rojo (ciberseguridad) */
.cta-section.security-cta .btn-white {
    color: #dc3545 !important;
}

.cta-section.security-cta .btn-white:hover {
    color: #a71e2a !important;
}

.cta-section.security-cta .btn-outline-white:hover {
    color: #dc3545 !important;
}