body {
    font-family: 'Inter', sans-serif;
}
.bg-sidebar {
    background-color: #222e3c;
}
/* Transiciones más suaves */
.transition-smooth {
    transition: all 0.3s ease-in-out;
}
/* Efecto hover en las tarjetas */
.download-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Estilos para banners sin deformación */
.banner-container {
    aspect-ratio: 7.89 / 1; /* Proporción basada en 1200x152 */
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
    opacity: 0.9;
}