/* Custom CSS for PMBG Cursos - Bootstrap Compatible */

/* Basic background */
body {
    background-color: #f8f9fa;
    font-family: 'Open Sans', sans-serif;
}

/* Card hover effect */
.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

/* Button hover effect */
.btn {
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Footer styling */
footer {
    background-color: #fff;
}

footer a {
    color: #6c757d;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #495057;
    text-decoration: none;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group form {
        margin-bottom: 10px;
    }
    
    .btn-group .me-2 {
        margin-right: 0 !important;
    }
} 