/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1565514020179-026b92b2d8b6');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/* Títulos */
h2 {
    font-weight: 700;
    color: #0d6efd;
}

/* Cards */
.card {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Botones */
.btn-light {
    font-weight: 600;
}

/* Footer */
footer {
    font-size: 14px;
}