/* Estilos adicionales para la página de descargas */

/* Header section */
.download-header {
    position: relative;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card hover effect */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Ad placeholders */
.ad-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #dee2e6;
}

/* Instructions content */
.instructions-content {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Table styles */
.download-info .table {
    margin-bottom: 0;
}

.download-info .table td {
    padding: 0.5rem;
    vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .download-header h1 {
        font-size: 1.5rem;
    }
    
    .download-actions {
        margin-top: 1.5rem;
    }
}
